{{- if and .Values.podSecurityPolicy.enabled (semverCompare "<1.25-0" .Capabilities.KubeVersion.GitVersion) -}} apiVersion: policy/v1beta1 kind: PodSecurityPolicy metadata: name: {{ include "fluentd.fullname" . }} labels: {{- include "fluentd.labels" . | nindent 4 }} {{- if .Values.podSecurityPolicy.annotations }} annotations: {{ toYaml .Values.podSecurityPolicy.annotations | indent 4 }} {{- end }} spec: privileged: false allowPrivilegeEscalation: false requiredDropCapabilities: - ALL hostNetwork: false hostIPC: false hostPID: false volumes: - 'configMap' - 'secret' - 'hostPath' {{- if .Values.persistence.enabled }} - 'persistentVolumeClaim' {{- end }} runAsUser: rule: 'RunAsAny' seLinux: rule: 'RunAsAny' supplementalGroups: rule: 'MustRunAs' ranges: - min: 1 max: 65535 fsGroup: rule: 'MustRunAs' ranges: - min: 1 max: 65535 readOnlyRootFilesystem: false {{- end }}