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
+2 -2
View File
@@ -11,7 +11,7 @@ spec:
app: workclub-api app: workclub-api
ports: ports:
- name: http - name: http
port: 5001 port: 8080
targetPort: 8080 targetPort: 8080
nodePort: 5001 nodePort: 30501
protocol: TCP protocol: TCP
+1 -1
View File
@@ -13,5 +13,5 @@ spec:
- name: http - name: http
port: 3000 port: 3000
targetPort: 3000 targetPort: 3000
nodePort: 3000 nodePort: 30080
protocol: TCP protocol: TCP
+1 -1
View File
@@ -13,5 +13,5 @@ spec:
- name: http - name: http
port: 8080 port: 8080
targetPort: 8080 targetPort: 8080
nodePort: 8080 nodePort: 30808
protocol: TCP protocol: TCP