{{- if .Values.rbac.pspEnabled }} apiVersion: policy/v1beta1 kind: PodSecurityPolicy metadata: name: {{ template "nfsProvisioner.fullname" . }}-psp {{- with .Values.nfsProvisioner.annotations }} annotations: {{ toYaml . | nindent 4 }} {{- end }} labels: {{- include "nfsProvisioner.labels" . | nindent 4 }} spec: privileged: {{ .Values.nfsProvisioner.privileged }} allowPrivilegeEscalation: true allowedCapabilities: ['*'] volumes: ['*'] hostNetwork: true hostPorts: - min: 0 max: 65535 hostIPC: true hostPID: true runAsUser: rule: 'RunAsAny' seLinux: rule: 'RunAsAny' supplementalGroups: rule: 'RunAsAny' fsGroup: rule: 'RunAsAny' {{- end }}