From: efiacor Date: Mon, 4 Apr 2022 10:40:23 +0000 (+0100) Subject: [DEPLOY] Bug fix for positional arg in deploy.sh X-Git-Tag: 10.0.0~72 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=oom.git;a=commitdiff_plain;h=412448cb66782befbca7ec3ee22346fe7557aa3d [DEPLOY] Bug fix for positional arg in deploy.sh Bug fix for positional arg in deploy.sh Signed-off-by: efiacor Change-Id: Ic8de9baf9236e65e53a0d2d9ba084208a3212772 Issue-ID: OOM-2955 --- diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh index 81bc4135e9..f32281da08 100755 --- a/kubernetes/helm/plugins/deploy/deploy.sh +++ b/kubernetes/helm/plugins/deploy/deploy.sh @@ -91,7 +91,7 @@ resolve_deploy_flags() { check_for_dep() { try=0 retries=30 - until (kubectl get deployment -n $RELEASE | grep -P "\b$2\b") &>/dev/null; do + until (kubectl get deployment -n $RELEASE | grep -P "\b$1\b") &>/dev/null; do (( ++try > retries )) && exit 1 echo "$1 not found. Retry $try/$retries" sleep 5