Fix Kubernetes NodePort range (30000-32767)
CI Pipeline / Backend Build & Test (push) Successful in 1m6s
CI Pipeline / Frontend Lint, Test & Build (push) Successful in 32s
CI Pipeline / Infrastructure Validation (push) Successful in 4s

- Frontend: nodePort 3000 → 30080
- Backend: nodePort 5001 → 30501, service port 5001 → 8080
- Keycloak: nodePort 8080 → 30808

Kubernetes requires NodePort to be in range 30000-32767.
The service port (internal) and targetPort (container) remain
unchanged for compatibility with existing configurations.
This commit is contained in:
WorkClub Automation
2026-03-20 22:50:51 +01:00
parent a5ebecc8b5
commit fd2931e59c
3 changed files with 15 additions and 15 deletions
+5 -5
View File
@@ -10,8 +10,8 @@ spec:
selector:
app: workclub-frontend
ports:
- name: http
port: 3000
targetPort: 3000
nodePort: 3000
protocol: TCP
- name: http
port: 3000
targetPort: 3000
nodePort: 30080
protocol: TCP