Merge branch '50853-vendor-auto-devops-gitlab-ci-yml-to-resolve-redeploying-deleted-app-gives-helm-error' into 'master'

Vendor Auto-DevOps.gitlab-ci.yml to resolve "Redeploying deleted app gives helm error"

Closes #50853

See merge request gitlab-org/gitlab-ce!21429
This commit is contained in:
Dmitriy Zaporozhets 2018-09-03 07:20:16 +00:00
commit f7f1c394fc
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
title: 'Auto-DevOps.gitlab-ci.yml: fix redeploying deleted app gives helm error'
merge_request: 21429
author:
type: fixed

View File

@ -825,7 +825,7 @@ rollout 100%:
fi
if [[ -n "$(helm ls -q "^$name$")" ]]; then
helm delete "$name"
helm delete --purge "$name"
fi
}