diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-06-22 13:53:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-22 13:53:59 +0000 |
commit | d95254082c9b7b5a060d8411a2f0bbdb3d90fb2e (patch) | |
tree | 1cab630b3b63088417e7ce7a96b9e3cc18cd1692 /kubernetes/helm | |
parent | 697b21bc9d3c97ea76012049f1dcf05bb1b32db8 (diff) | |
parent | 62178a49cc9e4088019d426636657d9f2980d242 (diff) |
Merge "[COMMON] Fix a few bashisms"
Diffstat (limited to 'kubernetes/helm')
-rwxr-xr-x | kubernetes/helm/plugins/deploy/deploy.sh | 2 | ||||
-rwxr-xr-x | kubernetes/helm/plugins/undeploy/undeploy.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh index ce8e80225f..4fec3984db 100755 --- a/kubernetes/helm/plugins/deploy/deploy.sh +++ b/kubernetes/helm/plugins/deploy/deploy.sh @@ -251,7 +251,7 @@ deploy() { fi if [ "$DELAY" = "true" ]; then echo sleep 3m - sleep 3m + sleep 180 fi else array=($(echo "$ALL_HELM_RELEASES" | grep "${RELEASE}-${subchart}")) diff --git a/kubernetes/helm/plugins/undeploy/undeploy.sh b/kubernetes/helm/plugins/undeploy/undeploy.sh index 790f84fda9..35fc4ca251 100755 --- a/kubernetes/helm/plugins/undeploy/undeploy.sh +++ b/kubernetes/helm/plugins/undeploy/undeploy.sh @@ -49,4 +49,4 @@ case "${1:-"help"}" in ;; esac -exit 0
\ No newline at end of file +exit 0 |