apiVersion: kyverno.io/v1 kind: ClusterPolicy metadata: name: disallow-privileged-containers annotations: policies.kyverno.io/title: Disallow Privileged Containers policies.kyverno.io/category: Security policies.kyverno.io/severity: high policies.kyverno.io/subject: Pod spec: validationFailureAction: audit background: true rules: - name: require-non-privileged match: any: - resources: kinds: - Pod validate: message: "Privileged containers are not allowed. Set securityContext.privileged to false." pattern: spec: containers: - name: "*" securityContext: privileged: "false"