Skip to content

Commit

Permalink
fix(kubernetes): fix keycloak url of preprocessing pipelines in local…
Browse files Browse the repository at this point in the history
… setup
  • Loading branch information
fengelniederhammer committed Feb 13, 2024
1 parent 9b0e32d commit 5b7ecc1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"http://host.k3d.internal:8079"
"http://loculus-backend-service:8079"
}}
{{- $keycloakHost := printf "https://authentication-%s" $.Values.host }}
{{- $keycloakHost := .Values.environment | eq "server" | ternary
(printf "https://authentication-%s" $.Values.host)
"http://loculus-keycloak-service:8083"
}}
{{- if not .Values.disablePreprocessing }}
{{- range $key, $value := .Values.instances }}
---
Expand Down

0 comments on commit 5b7ecc1

Please sign in to comment.