mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
26 lines
483 B
YAML
26 lines
483 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: psp-demo
|
||
|
labels:
|
||
|
app.type: prod
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nginx
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
spec:
|
||
|
volumes:
|
||
|
- name: sec-ctx-vol
|
||
|
emptyDir: {}
|
||
|
containers:
|
||
|
- name: sec-ctx-demo
|
||
|
image: busybox
|
||
|
command: [ "sh", "-c", "sleep 1h" ]
|
||
|
volumeMounts:
|
||
|
- name: sec-ctx-vol
|
||
|
mountPath: /data/demo
|