Fix conductor reload

We didn't have an annotation label, so there's no way for things
to automatically reload when config changes.

Change-Id: I5d142c8d3c2bb11b955d4c4e2fd2e95e3a1e522a
This commit is contained in:
Mohammed Naser 2021-07-03 16:16:10 -04:00
parent b1abce9a75
commit 8a54acc7b0
3 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Magnum
name: magnum
version: 0.2.1
version: 0.2.2
home: https://docs.openstack.org/magnum/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Magnum/OpenStack_Project_Magnum_vertical.png
sources:

View File

@ -42,6 +42,8 @@ spec:
{{ tuple $envAll "magnum" "conductor" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
annotations:
{{ 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" }}
spec:
serviceAccountName: {{ $serviceAccountName }}
affinity:

View File

@ -5,4 +5,5 @@ magnum:
- 0.1.2 Added post-install and post-upgrade helm hook for jobs
- 0.2.0 Remove support for releases before T
- 0.2.1 Use policies in yaml format
- 0.2.2 Fix restarting of magnum-conductor pods
...