mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
45 lines
766 B
YAML
45 lines
766 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:
|
|
containers:
|
|
- name: sec-ctx
|
|
image: nginx
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: psp-demo-unprivileged
|
|
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-unprivileged
|
|
image: nginxinc/nginx-unprivileged
|
|
volumeMounts:
|
|
- name: sec-ctx-vol
|
|
mountPath: /data/demo
|