zkt25/assignment2/deployment.yaml

23 lines
422 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: weather-frontend
namespace: webapp-ns
spec:
replicas: 1
selector:
matchLabels:
app: weather-frontend
template:
metadata:
labels:
app: weather-frontend
spec:
containers:
- name: weather-frontend
image: weather-frontend:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80