aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/helm/plugins/undeploy
diff options
context:
space:
mode:
authorMike Elliott <mike.elliott@amdocs.com>2018-10-15 16:21:36 -0400
committerMike Elliott <mike.elliott@amdocs.com>2018-10-15 16:32:18 -0400
commit8e7491b86ae54873b3178b0f03a9cdbecddd58cf (patch)
tree3cce381ad055d660dc399b4a2e9ba6951c83fa31 /kubernetes/helm/plugins/undeploy
parentb81745ce6dffd4880a2983d8521b8ad4a08cb194 (diff)
Update (un)deploy helm plugins
- Added support for deploying and undeploying individual releases. - Added support for a --verbose flag to output details during a deploy. By default, verbose output will be supressed. - Fixed issues preventng some flags from propagating to helm commands. - Fixed issue where by --set <chartname>.enabled=false was not removing disabled Helm Charts. Change-Id: I8e407808a9946f316d035efd503316f96723223d Issue-ID: OOM-1344 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Diffstat (limited to 'kubernetes/helm/plugins/undeploy')
-rwxr-xr-xkubernetes/helm/plugins/undeploy/undeploy.sh2
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