diff options
Diffstat (limited to 'kubernetes/common/postgres-init/values.yaml')
-rw-r--r-- | kubernetes/common/postgres-init/values.yaml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/kubernetes/common/postgres-init/values.yaml b/kubernetes/common/postgres-init/values.yaml index dbe28754f6..103ef047da 100644 --- a/kubernetes/common/postgres-init/values.yaml +++ b/kubernetes/common/postgres-init/values.yaml @@ -110,10 +110,20 @@ wait_for_job_container: containers: - '{{ include "common.name" . }}-update-config' -jobAnnotations: - "helm.sh/hook": "pre-upgrade,pre-rollback,post-install" - "helm.sh/hook-delete-policy": "before-hook-creation" - "helm.sh/hook-weight": "1" +# Annotations to control the execution and deletion of the job +# Can be used to delete a job before an Upgrade +# +# jobAnnotations: +# # In case of an ArgoCD deployment this Hook deletes the job before syncing +# argocd.argoproj.io/hook: Sync +# argocd.argoproj.io/hook-delete-policy: BeforeHookCreation +# +# # In case of an Helm/Flux deployment this Hook deletes the job +# # This is what defines this resource as a hook. Without this line, the +# # job is considered part of the release. +# "helm.sh/hook": "pre-upgrade,pre-rollback,post-install" +# "helm.sh/hook-delete-policy": "before-hook-creation" +# "helm.sh/hook-weight": "1" jobPodAnnotations: # Workarround to exclude K8S API from istio communication |