From: Yang (Gabriel) Yu Date: Mon, 25 Feb 2019 06:38:29 +0000 (+0800) Subject: bugfix: right cols to get available pods X-Git-Tag: opnfv-8.0.0~1 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=commitdiff_plain;h=16bb5e7d7745aab049d1a6810cef1ee620afa9cc bugfix: right cols to get available pods JIRA: BOTTLENECK-251 It seems the displaying of kubectl get pods changes and the number of available pods is at the 4th cols. Change-Id: I4b00bd084133a47907a0c7c9c655852b1ea52324 Signed-off-by: Yang (Gabriel) Yu --- diff --git a/utils/k8s_setup/k8s_utils.py b/utils/k8s_setup/k8s_utils.py index a89889f3..ad2cc991 100644 --- a/utils/k8s_setup/k8s_utils.py +++ b/utils/k8s_setup/k8s_utils.py @@ -67,7 +67,7 @@ def get_deployment_status(name, namespace): def get_available_pods(name, namespace): CMD = ("kubectl get deployment --namespace={} | grep {}".format( - namespace, name) + " | awk '{print $5}'") + namespace, name) + " | awk '{print $4}'") available_pods = commands.getstatusoutput(CMD) return int(available_pods[1])