17 lines
320 B
YAML
17 lines
320 B
YAML
|
apiVersion: apps/v1beta1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: nginx-deployment
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:1.8 # Update the version of nginx from 1.7.9 to 1.8
|
||
|
ports:
|
||
|
- containerPort: 80
|