Files
cnd2025-hw3/k8s/deploy.frontend.yaml

24 lines
456 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: cnd2025-frontend
labels:
app: cnd2025-frontend
spec:
replicas: 1
selector:
matchLabels:
app: cnd2025-frontend
template:
metadata:
labels:
app: cnd2025-frontend
spec:
containers:
- name: frontend
image: gitea.konchin.com/ytshih/cnd2025-hw3/frontend:latest
ports:
- name: http
containerPort: 80