2022-07-12 16:04:30 +00:00
|
|
|
apiVersion: apps/v1
|
2020-04-10 10:26:47 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: nginx-deployment
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: nginx
|
2022-07-12 16:04:30 +00:00
|
|
|
replicas: 2 # tells deployment to run 2 pods matching the template
|
2020-04-10 10:26:47 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: nginx
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: nginx
|
|
|
|
image: nginx:1.14.2
|
|
|
|
ports:
|
|
|
|
- containerPort: 80
|