mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
26 lines
No EOL
479 B
YAML
26 lines
No EOL
479 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: psp-demo
|
|
labels:
|
|
app.type: prod
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: psp
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: psp
|
|
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 |