diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-10-18 18:21:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-18 18:21:03 +0000 |
commit | 2e950172ccf33b42597174f0f4d7ad60e187fe46 (patch) | |
tree | 312c49e5a54abeae96703ba6cb83f1e365116561 /kubernetes/helm/plugins/undeploy | |
parent | fc677231787da26605d9c4d5fb1ecd9ff1150fec (diff) | |
parent | 8e7491b86ae54873b3178b0f03a9cdbecddd58cf (diff) |
Merge "Update (un)deploy helm plugins"
Diffstat (limited to 'kubernetes/helm/plugins/undeploy')
-rwxr-xr-x | kubernetes/helm/plugins/undeploy/undeploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/helm/plugins/undeploy/undeploy.sh b/kubernetes/helm/plugins/undeploy/undeploy.sh index 02b5d34c65..8191174314 100755 --- a/kubernetes/helm/plugins/undeploy/undeploy.sh +++ b/kubernetes/helm/plugins/undeploy/undeploy.sh @@ -21,7 +21,7 @@ undeploy() { RELEASE=$1 FLAGS=$2 - array=($(helm ls -q | grep $RELEASE)) + array=($(helm ls -q --all | grep $RELEASE)) n=${#array[*]} for (( i = n-1; i >= 0; i-- )) do |