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

18 lines
268 B
YAML
Raw Permalink Normal View History

apiVersion: v1
kind: Service
metadata:
name: workclub-api
labels:
app: workclub-api
component: backend
spec:
type: NodePort
selector:
app: workclub-api
ports:
- name: http
port: 80
targetPort: 8080
nodePort: 30081
protocol: TCP