diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-06-28 12:11:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-28 12:11:06 +0000 |
commit | ae7b05560d7c7d59c7ceaa7d7e40bdce67e7d399 (patch) | |
tree | f9b9f59c9eca920363beb55c0ecde823c94b5018 /kubernetes/helm/plugins | |
parent | 38a5a0decaaf9d4a0ae179432528899b73f1587a (diff) | |
parent | 3091ed446f8608e096462b8878333aab4bd27864 (diff) |
Merge changes from topic "bashisms"
* changes:
[COMMON] Fix array variables increments
[COMMON] Fix some bashisms
Diffstat (limited to 'kubernetes/helm/plugins')
-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 |