mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
24 lines
358 B
YAML
24 lines
358 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
name: mydeploy
|
||
|
spec:
|
||
|
replicas: 3
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nginx
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
color: orange
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: nginx:1.14.2
|
||
|
name: nginx
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
|