21 lines
398 B
YAML
21 lines
398 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web-deployment
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: web-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web-app
|
|
spec:
|
|
containers:
|
|
- name: web-container
|
|
image: web:latest
|
|
imagePullPolicy: IfNotPresent #same thing uses local image if any
|
|
ports:
|
|
- containerPort: 80
|