mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
20 lines
310 B
YAML
20 lines
310 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: busybox-deployment
|
||
|
labels:
|
||
|
app: busybox
|
||
|
spec:
|
||
|
replicas: 4
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: busybox
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: busybox
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: busybox
|
||
|
image: busybox:latest
|