2017-03-24 18:03:01 +00:00
|
|
|
apiVersion: apps/v1beta1
|
2016-10-11 21:36:18 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: nginx-deployment
|
|
|
|
spec:
|
2017-02-04 01:20:39 +00:00
|
|
|
replicas: 4 # Update the replicas from 2 to 4
|
2016-10-11 21:36:18 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: nginx
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: nginx
|
2017-02-04 01:20:39 +00:00
|
|
|
image: nginx:1.8
|
2016-10-11 21:36:18 +00:00
|
|
|
ports:
|
|
|
|
- containerPort: 80
|