mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
40 lines
867 B
YAML
40 lines
867 B
YAML
---
|
|
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: drop-all-capabilities
|
|
spec:
|
|
admission: true
|
|
background: true
|
|
rules:
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Pod
|
|
name: drop-all-containers
|
|
validate:
|
|
message: Drop all must be defined for every container in the Pod.
|
|
pattern:
|
|
spec:
|
|
containers:
|
|
- securityContext:
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Pod
|
|
name: drop-all-initcontainers
|
|
validate:
|
|
message: Drop all must be defined for every container in the Pod.
|
|
pattern:
|
|
spec:
|
|
initContainers:
|
|
- securityContext:
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
validationFailureAction: Audit
|