Change helm hook weight of bootstrap job in heat

All deployments have bootstrap job as a static dependency in the default value.
The current weight 5 is not proper.

Change-Id: Ic2dccb049f74e6eb971bc8ea947e4ee9baee3237
This commit is contained in:
josebb 2021-12-10 12:28:33 +02:00
parent 350d55baad
commit f42e74a309
3 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Heat
name: heat
version: 0.2.17
version: 0.2.18
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
sources:

View File

@ -14,7 +14,6 @@ limitations under the License.
{{- define "metadata.annotations.job.bootstrap" }}
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "5"
{{- end }}
{{- if and .Values.manifests.job_bootstrap .Values.bootstrap.enabled }}

View File

@ -24,4 +24,5 @@ heat:
- 0.2.15 Distinguish between port number of internal endpoint and binding port number
- 0.2.16 Support TLS endpoints
- 0.2.17 Use HTTP probe instead of TCP probe
- 0.2.18 Change hook weight for bootstrap job
...