Fix KEYCLOAK_ISSUER_INTERNAL to include port 8080
CI Pipeline / Backend Build & Test (push) Successful in 50s
CI Pipeline / Frontend Lint, Test & Build (push) Successful in 34s
CI Pipeline / Infrastructure Validation (push) Successful in 4s

The internal Keycloak URL was missing the port number, causing
the OIDC token exchange to fail. The code tries to replace
:8080 with :8081 but the port was missing entirely.

- Changed from: http://workclub-keycloak/realms/workclub
- Changed to: http://workclub-keycloak:8080/realms/workclub
This commit is contained in:
WorkClub Automation
2026-03-21 09:30:13 +01:00
parent 86c7b0d46d
commit f8d698ba42
+1 -1
View File
@@ -87,4 +87,4 @@ spec:
name: workclub-config
key: keycloak-authority
- name: KEYCLOAK_ISSUER_INTERNAL
value: "http://workclub-keycloak/realms/workclub"
value: "http://workclub-keycloak:8080/realms/workclub"