diff --git a/ceph-client/Chart.yaml b/ceph-client/Chart.yaml index f7686f242..38d13949b 100644 --- a/ceph-client/Chart.yaml +++ b/ceph-client/Chart.yaml @@ -15,6 +15,6 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Ceph Client name: ceph-client -version: 0.1.32 +version: 0.1.33 home: https://github.com/ceph/ceph-client ... diff --git a/ceph-client/templates/deployment-checkdns.yaml b/ceph-client/templates/deployment-checkdns.yaml index 075f3b8d4..1adee4522 100644 --- a/ceph-client/templates/deployment-checkdns.yaml +++ b/ceph-client/templates/deployment-checkdns.yaml @@ -28,7 +28,7 @@ and its reference can not be changed. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: clusterrole-checkdns + name: {{ printf "%s-%s" $envAll.Release.Name "clusterrole-checkdns" | quote }} rules: - apiGroups: - "" @@ -52,7 +52,7 @@ metadata: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - name: clusterrole-checkdns + name: {{ printf "%s-%s" $envAll.Release.Name "clusterrole-checkdns" | quote }} subjects: - kind: ServiceAccount name: {{ $serviceAccountName }} diff --git a/releasenotes/notes/ceph-client.yaml b/releasenotes/notes/ceph-client.yaml index 5f9f6f0a6..4c2c96a1e 100644 --- a/releasenotes/notes/ceph-client.yaml +++ b/releasenotes/notes/ceph-client.yaml @@ -33,4 +33,5 @@ ceph-client: - 0.1.30 Move ceph-mgr deployment to the ceph-mon chart - 0.1.31 Consolidate mon_endpoints discovery - 0.1.32 Simplify test rules for ceph-mgr deployment + - 0.1.33 More robust naming of clusterrole-checkdns ...