From 853cc0d2e982bad069f733a670568ecfb904238f Mon Sep 17 00:00:00 2001 From: Luc Provoost Date: Thu, 2 Feb 2023 12:19:59 +0100 Subject: Change pod names: refer to prox in stead of rapid In rapid_k8s_deployment.py, we are creating the pods. The name used to refer to rapid. Actually, the pods that we are creating are the prox instances. The rapid scripts need to run elsewhere. Signed-off-by: Luc Provoost Change-Id: Idcc842c4aa3a85f2232f7fa71b6482c6081cce1c --- VNFs/DPPD-PROX/helper-scripts/rapid/rapid_k8s_deployment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_k8s_deployment.py b/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_k8s_deployment.py index 9ef7ef6d..92b39796 100644 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_k8s_deployment.py +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_k8s_deployment.py @@ -111,7 +111,7 @@ class K8sDeployment: pod_name = self._create_config.get( "POD%d" % i, "name") else: - pod_name = "pod-rapid-%d" % i + pod_name = "prox-pod-%d" % i # Search for POD hostname if self._create_config.has_option("POD%d" % i, -- cgit 1.2.3-korg