diff options
Diffstat (limited to 'kubernetes')
-rwxr-xr-x | kubernetes/helm/plugins/deploy/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |