b4e2a85b49
Chart upgrading was failing due to some immutable fields in job are needed to upgrade. So, we thought using the post-install and post-upgrade helm hook for job to force the job resource to execute after all resources are created. And as some jobs are dependent on each other i.e. some jobs needs to run in order for helm hook to be successful. For that we used hook-weight to control resource creation order. Change-Id: I26881324d101a986b7367d4682e9adcd07a24b13
27 lines
1.0 KiB
YAML
27 lines
1.0 KiB
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- define "metadata.annotations.job.ks_user" }}
|
|
helm.sh/hook: post-install,post-upgrade
|
|
helm.sh/hook-weight: "-1"
|
|
{{- end }}
|
|
|
|
{{- if .Values.manifests.job_ks_user }}
|
|
{{- $ksUserJob := dict "envAll" . "serviceName" "neutron" "jobAnnotations" (include "metadata.annotations.job.ks_user" . | fromYaml) -}}
|
|
{{- if .Values.manifests.certificates -}}
|
|
{{- $_ := set $ksUserJob "tlsSecret" .Values.secrets.tls.network.server.internal -}}
|
|
{{- end -}}
|
|
{{ $ksUserJob | include "helm-toolkit.manifests.job_ks_user" }}
|
|
{{- end }}
|