aboutsummaryrefslogtreecommitdiffstats
path: root/kud/tests/vnfs/comp-app/collection/app2/helm/prometheus-operator/templates/prometheus-operator/psp-clusterrolebinding.yaml
blob: 07404127533ada41ee99467e84ec61269ffbc71a (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: {{ template "prometheus-operator.namespace" . }}
{{- end }}