23 lines
343 B
YAML
23 lines
343 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: web
|
|
name: web
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.19.3
|
|
name: nginx
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|