Add hash for ceph rgw keystone user

This is needed for rgw pods will restart when keystone user secret
changes.

Change-Id: I2092bdc9a4e8a328aec393cf07f8be196be26c32
This commit is contained in:
Ritchie, Frank (fr801x) 2021-07-07 13:34:41 -05:00
parent 07ceecd8d7
commit 3c4828935a
3 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,6 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Ceph RadosGW
name: ceph-rgw
version: 0.1.12
version: 0.1.13
home: https://github.com/ceph/ceph
...

View File

@ -58,6 +58,7 @@ spec:
annotations:
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
configmap-etc-client-hash: {{ tuple "configmap-etc-client.yaml" . | include "helm-toolkit.utils.hash" }}
secret-keystone-rgw-hash: {{ tuple "secret-keystone-rgw.yaml" . | include "helm-toolkit.utils.hash" }}
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" | indent 8 }}
{{ dict "envAll" $envAll "podName" "ceph-rgw" "containerNames" (list "init" "ceph-rgw" "ceph-init-dirs" "ceph-rgw-init") | include "helm-toolkit.snippets.kubernetes_mandatory_access_control_annotation" | indent 8 }}
spec:

View File

@ -13,4 +13,5 @@ ceph-rgw:
- 0.1.10 Fix a bug in placement target deletion for new targets
- 0.1.11 Change s3 auth order to use local before external
- 0.1.12 Export crash dumps when Ceph daemons crash
- 0.1.13 Add configmap hash for keystone rgw
...