X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Automation%2FTests%2FScripts%2Fk8s_helper.py;h=a1cce5fc9628456e1144752e023ea9a786414513;hb=refs%2Fchanges%2F94%2F4494%2F1;hp=4fe6dd82f5b3eb82aa7145f6715459120c07e633;hpb=31f6a4457a6008d3c43c417deabfbd9e076cfab2;p=ric-plt%2Fe2mgr.git diff --git a/Automation/Tests/Scripts/k8s_helper.py b/Automation/Tests/Scripts/k8s_helper.py index 4fe6dd8..a1cce5f 100644 --- a/Automation/Tests/Scripts/k8s_helper.py +++ b/Automation/Tests/Scripts/k8s_helper.py @@ -32,7 +32,7 @@ def extract_service_ip(service_name): return service_ip.strip() def extract_pod_name(pod_base_name): - k8s_command = "kubectl get pods -n ricplt | /bin/grep {} | awk \'{{print $1}}\'" \ + k8s_command = "kubectl get pods -n ricplt | /bin/grep {} | /bin/grep Running | awk \'{{print $1}}\'" \ .format(pod_base_name) pod_name = subprocess.check_output(["/bin/bash", "-c", k8s_command], universal_newlines=True)