diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2019-10-10 10:56:22 -0400 |
---|---|---|
committer | Mike Elliott <mike.elliott@amdocs.com> | 2019-10-10 15:40:51 +0000 |
commit | 0b76e728d2ef87fc2d85d644c8ca45cdc3f93645 (patch) | |
tree | 8a09be50bceea6d16459a9a39babf5454e54b275 /kubernetes/helm/plugins/deploy | |
parent | 86fb8fe24ce03d725a67a30f9b255ec37d7aba45 (diff) |
Fix deploy on failure of subproject
Issue-ID: OOM-2114
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Change-Id: I8fd18f0e58cc680000a46299c8997e51b1f2dc8e
Diffstat (limited to 'kubernetes/helm/plugins/deploy')
-rwxr-xr-x | kubernetes/helm/plugins/deploy/deploy.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh index 1622689386..3da189b908 100755 --- a/kubernetes/helm/plugins/deploy/deploy.sh +++ b/kubernetes/helm/plugins/deploy/deploy.sh @@ -140,13 +140,12 @@ deploy() { # actual upgrade/install of parent and subcharts. DEPLOY_FLAGS=$(resolve_deploy_flags "$FLAGS") - # determine if upgrading individual subchart or entire parent + subcharts + # determine if upgrading individual subchart or entire parent + subcharts SUBCHART_RELEASE="$(cut -d'-' -f2 <<<"$RELEASE")" - if [[ ! -d "$CACHE_SUBCHART_DIR/$SUBCHART_RELEASE" ]]; then + # update specified subchart without parent + RELEASE="$(cut -d'-' -f1 <<<"$RELEASE")" + if [[ $SUBCHART_RELEASE == $RELEASE ]]; then SUBCHART_RELEASE= - else - # update specified subchart without parent - RELEASE="$(cut -d'-' -f1 <<<"$RELEASE")" fi # clear previously cached charts |