1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/examples/demo/security_context/busybox.yaml

26 lines
479 B
YAML
Raw Normal View History

2019-06-22 16:05:06 -07:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: psp-demo
labels:
app.type: prod
spec:
replicas: 1
selector:
matchLabels:
2019-06-22 16:08:11 -07:00
app: psp
2019-06-22 16:05:06 -07:00
template:
metadata:
labels:
2019-06-22 16:08:11 -07:00
app: psp
2019-06-22 16:05:06 -07:00
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