aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/collection/charts/prometheus-operator/templates/prometheus-operator/psp-clusterrolebinding.yaml
blob: 77a87a3948f0a7ea888455665b99ebc03c7cca1d (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 .Values.global.rbac.pspEnabled }}
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: {{ template "prometheus-operator.fullname" . }}-operator-psp
  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-psp
subjects:
  - kind: ServiceAccount
    name: {{ template "prometheus-operator.operator.serviceAccountName" . }}
    namespace: {{ .Release.Namespace }}
{{- end }}