mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
21 lines
No EOL
408 B
YAML
21 lines
No EOL
408 B
YAML
apiVersion : kyverno.io/v1alpha1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: policy-security-context
|
|
spec:
|
|
rules:
|
|
- name: set-userID
|
|
match:
|
|
resources:
|
|
kinds:
|
|
- Deployment
|
|
selector :
|
|
matchLabels:
|
|
app.type: prod
|
|
mutate:
|
|
overlay:
|
|
spec:
|
|
template:
|
|
spec:
|
|
securityContext:
|
|
runAsNonRoot: true |