2018-02-27 17:51:46 +00:00
|
|
|
apiVersion: apps/v1
|
2017-01-22 19:48:07 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: nginx-deployment
|
|
|
|
spec:
|
2018-02-27 17:51:46 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: nginx
|
2017-01-22 19:48:07 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: nginx
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: nginx
|
2020-03-17 17:48:23 +00:00
|
|
|
image: nginx:1.16.1 # update the image
|
2017-01-22 19:48:07 +00:00
|
|
|
ports:
|
|
|
|
- containerPort: 80
|