21 lines
365 B
YAML
21 lines
365 B
YAML
apiVersion: apps/v1beta2 # for versions before 1.8.0 use apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: patch-demo
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
containers:
|
|
- name: patch-demo-ctr
|
|
image: nginx
|