aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/helm/plugins/deploy/deploy.sh
diff options
context:
space:
mode:
authorAkansha Dua <akansha.dua@amdocs.com>2019-09-04 12:17:15 +0000
committerAkansha Dua <akansha.dua@amdocs.com>2019-09-04 12:17:24 +0000
commitca94f8c3d620fcc5d65823185413609ef5128c6a (patch)
treeeae186023d7a1c9cf5c21f8071b197fc3e8be62f /kubernetes/helm/plugins/deploy/deploy.sh
parent1d9cdad787baf0d67e5a610d532b05b41243c612 (diff)
delay flag in deploy.sh
Issue-ID: OOM-1997 Signed-off-by: Akansha Dua <akansha.dua@amdocs.com> Change-Id: I3a8b117c81219f75231bec6b61c99fe2dbcd0485
Diffstat (limited to 'kubernetes/helm/plugins/deploy/deploy.sh')
-rwxr-xr-xkubernetes/helm/plugins/deploy/deploy.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh
index 3416a02596..1622689386 100755
--- a/kubernetes/helm/plugins/deploy/deploy.sh
+++ b/kubernetes/helm/plugins/deploy/deploy.sh
@@ -109,6 +109,12 @@ deploy() {
FLAGS="$(echo $FLAGS| sed -n 's/--verbose//p')"
VERBOSE="true"
fi
+ # determine if delay for deployment is enabled
+ DELAY="false"
+ if [[ $FLAGS = *"--delay"* ]]; then
+ FLAGS="$(echo $FLAGS| sed -n 's/--delay//p')"
+ DELAY="true"
+ fi
# determine if set-last-applied flag is enabled
SET_LAST_APPLIED="false"
if [[ $FLAGS = *"--set-last-applied"* ]]; then
@@ -238,6 +244,10 @@ deploy() {
> $LOG_FILE.log 2>&1
fi
fi
+ if [[ $DELAY == "true" ]]; then
+ echo sleep 3m
+ sleep 3m
+ fi
else
array=($(echo "$ALL_HELM_RELEASES" | grep "${RELEASE}-${subchart}"))
n=${#array[*]}