20 lines
392 B
YAML
20 lines
392 B
YAML
|
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: nginx-deployment
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nginx
|
||
|
replicas: 4 # Update the replicas from 2 to 4
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:1.8
|
||
|
ports:
|
||
|
- containerPort: 80
|