mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 07:17:45 +08:00
* [bitnami/cloudnative-pg] fix use Values failed in range method Signed-off-by: xiongjianbo <xiongjianbo_yt@163.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * fix role.yaml Signed-off-by: xiongjianbo <xiongjianbo_yt@163.com> --------- Signed-off-by: xiongjianbo <xiongjianbo_yt@163.com> Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: xiongjianbo <xiongjianbo_yt@163.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and (not .Values.watchAllNamespaces) }}
|
|
{{- $watchNamespaces := default (list (include "common.names.namespace" .)) .Values.watchNamespaces }}
|
|
{{- range $namespace := $watchNamespaces }}
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: {{ include "common.capabilities.rbac.apiVersion" $ }}
|
|
metadata:
|
|
name: {{ include "common.names.fullname" $ | trunc 63 | trimSuffix "-" }}
|
|
namespace: {{ $namespace | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" $.Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/part-of: cloudnative-pg
|
|
app.kubernetes.io/component: operator
|
|
{{- if $.Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $.Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: {{ include "common.names.fullname" $ | trunc 63 | trimSuffix "-" }}
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: {{ template "cloudnative-pg.serviceAccountName" $ }}
|
|
namespace: {{ include "common.names.namespace" $ | quote }}
|
|
{{- end }}
|
|
{{- end }}
|