Baseline — minimally restrictive Pod security standard.
1apiVersion: v12kind: Namespace3metadata:4 name: apps5 labels:6 pod-security.kubernetes.io/enforce: baseline7 pod-security.kubernetes.io/enforce-version: latest8---9apiVersion: v110kind: Pod11metadata:12 name: compliant-pod13 namespace: apps14spec:15 containers:16 - name: app17 image: nginx:latest18 securityContext:19 allowPrivilegeEscalation: false
1kubectl apply -f pod.yaml 2>&1 | grep Warning
Baseline Disallows: privileged, hostNetwork/PID/IPC, hostPath, specific capabilities.