mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
22 lines
368 B
YAML
22 lines
368 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: bad-pod-2
|
||
|
namespace: staging-ns
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: busybox1
|
||
|
image: busybox
|
||
|
args:
|
||
|
- sleep
|
||
|
- 1d
|
||
|
securityContext:
|
||
|
seccompProfile:
|
||
|
type: RuntimeDefault
|
||
|
runAsNonRoot: true
|
||
|
runAsUser: 0
|
||
|
allowPrivilegeEscalation: false
|
||
|
capabilities:
|
||
|
drop:
|
||
|
- ALL
|