mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-25 17:13:48 +00:00
25 lines
433 B
YAML
25 lines
433 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: bad-deployment-1
|
||
|
labels:
|
||
|
prod: "true"
|
||
|
app: bad-nginx
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
prod: "true"
|
||
|
app: bad-nginx
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
prod: "true"
|
||
|
app: bad-nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:latest
|
||
|
securityContext:
|
||
|
allowPrivilegeEscalation: true
|