Files
work-club-manager/infra/k8s/base/frontend-service.yaml

18 lines
284 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
name: workclub-frontend
labels:
app: workclub-frontend
component: frontend
spec:
type: NodePort
selector:
app: workclub-frontend
ports:
- name: http
port: 80
targetPort: 3000
nodePort: 30080
protocol: TCP