Files
todo/deploy/k8s/base/service.yaml
Mayne0213 8b195378a5 CHORE(app): initial configuration
- Add initial app settings
- Configure base deployment
2025-11-24 22:09:18 +09:00

17 lines
227 B
YAML

apiVersion: v1
kind: Service
metadata:
name: todo-service
labels:
app: todo-app
spec:
type: ClusterIP
ports:
- name: http
port: 80
targetPort: 3000
protocol: TCP
selector:
app: todo-app