Files
work-club-manager/infra/k8s/base/keycloak-service.yaml
WorkClub Automation d4f09295be feat(k8s): expose workclub services via LAN NodePorts
Expose frontend, API, and Keycloak on stable NodePorts and align app/keycloak external URLs for local-network browser access.
2026-03-13 06:33:50 +01:00

18 lines
280 B
YAML

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