mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 01:16:55 +00:00
22 lines
456 B
YAML
22 lines
456 B
YAML
|
apiVersion : kyverno.io/v1alpha1
|
||
|
kind : ClusterPolicy
|
||
|
metadata :
|
||
|
name : check-non-root
|
||
|
spec :
|
||
|
rules:
|
||
|
- name: check-non-root
|
||
|
match:
|
||
|
resources:
|
||
|
kinds:
|
||
|
- Deployment
|
||
|
- StatefuleSet
|
||
|
- DaemonSet
|
||
|
validate:
|
||
|
message: "Root user is not allowed"
|
||
|
pattern:
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
securityContext:
|
||
|
runAsNonRoot: true
|