Files
tonePage/apps/deploy/frontend-deployment.yaml
tone 695577d53a
Some checks failed
Deploy to K3s / deploy (push) Failing after 16s
chore: 提交deploy文件,step.run修改为相对路径
2025-12-20 13:26:22 +08:00

33 lines
539 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
spec:
replicas: 1
selector:
matchLabels:
app: frontend
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend
image: localhost:5000/frontend:latest
ports:
- containerPort: 3000
---
apiVersion: v1
kind: Service
metadata:
name: frontend-service
spec:
type: NodePort
ports:
- port: 3000
targetPort: 3000
nodePort: 30000
selector:
app: frontend