aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/operator/charts/prometheus-operator/templates/prometheus-operator/clusterrolebinding.yaml
blob: 13f0ca07021393a56a1e806cf39a4e407e0aae8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{- if and .Values.prometheusOperator.enabled .Values.global.rbac.create }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
  name: {{ template "prometheus-operator.fullname" . }}-operator
  labels:
    app: {{ template "prometheus-operator.name" . }}-operator
{{ include "prometheus-operator.labels" . | indent 4 }}
roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: ClusterRole
  name: {{ template "prometheus-operator.fullname" . }}-operator
subjects:
- kind: ServiceAccount
  name: {{ template "prometheus-operator.operator.serviceAccountName" . }}
  namespace: {{ .Release.Namespace }}
{{- end }}