c4dca21649
* Update deployments for 1.6 * Update all deployments in docs to use the new endpoint
17 lines
306 B
YAML
17 lines
306 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment
|
|
spec:
|
|
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
|