mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-25 09:06:49 +00:00
25 lines
463 B
YAML
25 lines
463 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: bad-statefulset-1
|
||
|
labels:
|
||
|
prod: "true"
|
||
|
spec:
|
||
|
serviceName: my-app-service
|
||
|
replicas: 3
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
prod: "true"
|
||
|
app: busybox
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
prod: "true"
|
||
|
app: busybox
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: my-app-container
|
||
|
image: busybox:latest
|
||
|
securityContext:
|
||
|
allowPrivilegeEscalation: true
|
||
|
|