mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
23 lines
415 B
YAML
23 lines
415 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: test-dpl1
|
||
|
namespace: reza-dev
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: test-dpl1
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: test-dpl1
|
||
|
spec:
|
||
|
securityContext:
|
||
|
seccompProfile:
|
||
|
type: Unconfined
|
||
|
containers:
|
||
|
- name: test-dpl1
|
||
|
image: busybox:1.35.0
|
||
|
command:
|
||
|
- sleep
|
||
|
- "infinity"
|