Skip to content

Commit

Permalink
fix: reunited oidc URL with realm
Browse files Browse the repository at this point in the history
  • Loading branch information
kalisio-nicolas committed Aug 27, 2024
1 parent 24820af commit de46341
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/chirpstack/config/chirpstack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
# Registration is enabled, it avoids having to also create the user in chirpstack (double creation)
registration_enabled={{ .Values.keycloak.registration_enabled }}
registration_callback_url={{ .Values.keycloak.registration_callback_url | quote }}
provider_url= "{{ .Values.keycloak.oidcIssuerUrl }}{{ .Values.keycloak.provider_url_path}}"
provider_url= "{{ .Values.keycloak.oidcIssuerUrl }}"
client_id="$CLIENT_ID"
client_secret="$CLIENT_SECRET"

redirect_url="https://{{ .Release.Name }}.{{ .Values.global.subdomain }}{{ .Values.keycloak.redirect_url_path }}"
logout_url="{{ .Values.keycloak.oidcIssuerUrl }}{{.Values.keycloak.provider_url_path}}{{ .Values.keycloak.logout_url_path }}"
logout_url="{{ .Values.keycloak.oidcIssuerUrl }}{{ .Values.keycloak.logout_url_path }}"
login_redirect=false
login_label="keycloak"
assume_email_verified=false
Expand Down
1 change: 0 additions & 1 deletion charts/chirpstack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ keycloak :
enabled : false
oidcIssuerUrl : ""
logout_url_path : "/protocol/openid-connect/logout"
provider_url_path : "/realms/chirpstack"
redirect_url_path : "/auth/oidc/callback"


Expand Down

0 comments on commit de46341

Please sign in to comment.