Merge "add post-upgrade hook and deletion policy to readonly SA token secret"

This commit is contained in:
Zuul 2019-01-31 07:38:12 +00:00 committed by Gerrit Code Review
commit 64bf5981a1
1 changed files with 11 additions and 1 deletions

View File

@ -102,7 +102,17 @@ metadata:
before creating a secret token for it. By default helm deploys secrets
before ServiceAccounts which causes this secret to not exist since the
ServiceAccount is missing.
post-upgrade hook is required when upgrading from a previous version of
this chart that did not have this secret.
*/}}
"helm.sh/hook": "post-install"
"helm.sh/hook": "post-install,post-upgrade"
{{/*
before--hook-creation hook is required for sequential upgrades. Tiller
does not keep track of resources installed via post-{install,upgrade} hooks,
this causes an "Already exists" error when upgrading without this hook. With
this hook, this secret will be deleted before upgrading, which will then install
this resource.
*/}}
"helm.sh/hook-delete-policy": "before-hook-creation"
---
{{- end }}