Files
cnd2025-hw3/k8s/deploy.frontend.yaml
2025-04-18 23:49:39 +08:00

30 lines
611 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
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 5