From 3c4828935abe808fc9c01f100100bd5b07cfe9fa Mon Sep 17 00:00:00 2001 From: "Ritchie, Frank (fr801x)" Date: Wed, 7 Jul 2021 13:34:41 -0500 Subject: [PATCH] Add hash for ceph rgw keystone user This is needed for rgw pods will restart when keystone user secret changes. Change-Id: I2092bdc9a4e8a328aec393cf07f8be196be26c32 --- ceph-rgw/Chart.yaml | 2 +- ceph-rgw/templates/deployment-rgw.yaml | 1 + releasenotes/notes/ceph-rgw.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ceph-rgw/Chart.yaml b/ceph-rgw/Chart.yaml index 422e9979c..d6bfd8d09 100644 --- a/ceph-rgw/Chart.yaml +++ b/ceph-rgw/Chart.yaml @@ -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 ... diff --git a/ceph-rgw/templates/deployment-rgw.yaml b/ceph-rgw/templates/deployment-rgw.yaml index 9428abd10..473b4488a 100644 --- a/ceph-rgw/templates/deployment-rgw.yaml +++ b/ceph-rgw/templates/deployment-rgw.yaml @@ -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: diff --git a/releasenotes/notes/ceph-rgw.yaml b/releasenotes/notes/ceph-rgw.yaml index bee54ca70..2fef9348d 100644 --- a/releasenotes/notes/ceph-rgw.yaml +++ b/releasenotes/notes/ceph-rgw.yaml @@ -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 ...