zkt25/z2-failed/web-deployment.yaml

22 lines
423 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: web-deployment
namespace: visitor-app
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