{{- if .Values.rbac.create }} apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }} kind: Role metadata: name: {{ include "mongodb.fullname" . }} namespace: {{ include "mongodb.namespace" . }} labels: {{- include "common.labels.standard" . | nindent 4 }} {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} {{- end }} rules: - apiGroups: - "" resources: - services verbs: - get - list - watch {{- if .Values.rbac.role.rules }} {{- toYaml .Values.rbac.role.rules | nindent 2 }} {{- end -}} {{- $pspAvailable := (semverCompare "<1.25-0" (include "common.capabilities.kubeVersion" .)) -}} {{- if and $pspAvailable .Values.podSecurityPolicy.create }} - apiGroups: ['{{ template "podSecurityPolicy.apiGroup" . }}'] resources: ['podsecuritypolicies'] verbs: ['use'] resourceNames: [{{ include "mongodb.fullname" . }}] {{- end -}} {{- end }}