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

18 lines
285 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: 3000
targetPort: 3000
nodePort: 3000
protocol: TCP