horizon: Rollout when logo configmap is changed

Change-Id: I8689f6541ae66255a686a8494c9c6724fa0e5820
This commit is contained in:
okozachenko 2023-08-18 23:57:31 +10:00
parent 9f8334ffc3
commit 2387723306
3 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Horizon
name: horizon
version: 0.3.10
version: 0.3.11
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
sources:

View File

@ -43,6 +43,9 @@ spec:
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
{{- if .Values.manifests.configmap_logo }}
configmap-logo-hash: {{ tuple "configmap-logo.yaml" . | include "helm-toolkit.utils.hash" }}
{{- end }}
{{ dict "envAll" $envAll "podName" "horizon" "containerNames" (list "horizon" "init" ) | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
spec:
serviceAccountName: {{ $serviceAccountName }}

View File

@ -47,4 +47,5 @@ horizon:
- 0.3.8 Fix horizon tolerations
- 0.3.9 Add Zed overrides
- 0.3.10 Add 2023.1 overrides
- 0.3.11 Rollout when logo configmap is changed
...