66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
{{- if .Values.rbac.create }}
|
|
{{- if (and .Values.podSecurityPolicy.enable (not .Values.podSecurityPolicy.name)) }}
|
|
{{- if semverCompare "< 1.25.x" (include "kubeVersion" .) }}
|
|
---
|
|
kind: PodSecurityPolicy
|
|
apiVersion: policy/v1beta1
|
|
metadata:
|
|
name: {{ template "instana-agent.podSecurityPolicyName" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "instana-agent.commonLabels" . | nindent 4 }}
|
|
spec:
|
|
privileged: true
|
|
allowPrivilegeEscalation: true
|
|
volumes:
|
|
- configMap
|
|
- downwardAPI
|
|
- emptyDir
|
|
- persistentVolumeClaim
|
|
- secret
|
|
- projected
|
|
- hostPath
|
|
allowedHostPaths:
|
|
- pathPrefix: "/dev"
|
|
readOnly: false
|
|
- pathPrefix: "/run"
|
|
readOnly: false
|
|
- pathPrefix: "/var/run"
|
|
readOnly: false
|
|
- pathPrefix: "/var/vcap/sys/run/docker"
|
|
readOnly: false
|
|
- pathPrefix: "/var/vcap/sys/run/containerd"
|
|
readOnly: false
|
|
- pathPrefix: "/var/vcap/jobs/containerd/config"
|
|
readOnly: false
|
|
- pathPrefix: "/sys"
|
|
readOnly: false
|
|
- pathPrefix: "/var/log"
|
|
readOnly: false
|
|
- pathPrefix: "/var/lib"
|
|
readOnly: false
|
|
- pathPrefix: "/var/data"
|
|
readOnly: false
|
|
- pathPrefix: "/etc/machine-id"
|
|
readOnly: false
|
|
{{- if .Values.agent.host.repository }}
|
|
- pathPrefix: {{ .Values.agent.host.repository }}
|
|
readOnly: false
|
|
{{- end }}
|
|
hostNetwork: true
|
|
hostPorts:
|
|
- min: 0
|
|
max: 65535
|
|
hostPID: true
|
|
runAsUser:
|
|
rule: "RunAsAny"
|
|
seLinux:
|
|
rule: "RunAsAny"
|
|
supplementalGroups:
|
|
rule: "RunAsAny"
|
|
fsGroup:
|
|
rule: "RunAsAny"
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|