From c7607c5f6fb22885aa35a0731b35acc7da6906f4 Mon Sep 17 00:00:00 2001 From: Simon Seyock Date: Thu, 27 Jun 2024 17:04:03 +0200 Subject: [PATCH] fix: use internal keycloak url for jwt verification --- charts/shogun-boot/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/shogun-boot/templates/configmap.yaml b/charts/shogun-boot/templates/configmap.yaml index 1b466a7..901cd11 100644 --- a/charts/shogun-boot/templates/configmap.yaml +++ b/charts/shogun-boot/templates/configmap.yaml @@ -115,7 +115,7 @@ data: resourceserver: jwt: issuer-uri: {{ .Values.keycloak.url }}/realms/{{ .Values.keycloak.realm }} - jwk-set-uri: {{ .Values.keycloak.url }}/realms/{{ .Values.keycloak.realm }}/protocol/openid-connect/certs + jwk-set-uri: http://{{ .Values.keycloak.internalServerUrl }}/auth/realms/{{ .Values.keycloak.realm }}/protocol/openid-connect/certs graphql: graphiql: enabled: {{ .Values.debug.graphiql }}