File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
airbyte-connector-builder-server Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ keycloak:
618
618
619
619
- env : KEYCLOAK_HOST
620
620
key : host
621
- valueExp : (get (urlParse .Values.global.airbyteUrl) "host")
621
+ defaultValueExp : (get (urlParse .Values.global.airbyteUrl) "host")
622
622
623
623
- env : KEYCLOAK_PORT
624
624
key : service.port
Original file line number Diff line number Diff line change 80
80
{{- if (eq .Values.global.edition "enterprise") }}
81
81
{{- include "airbyte.enterprise.envs" . | nindent 8 }}
82
82
{{- include "airbyte.auth.identityProvider.envs" . | nindent 8 }}
83
+ {{- include "airbyte.keycloak.envs" . | nindent 8 }}
83
84
{{- end }}
84
85
85
86
{{- if (eq .Values.global.edition "cloud") }}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Renders the keycloak.url environment variable
27
27
Renders the keycloak.host value
28
28
*/} }
29
29
{ {- define " airbyte.keycloak.host" } }
30
- { {- (get (urlParse .Values.global.airbyteUrl) " host" ) } }
30
+ { {- .Values.keycloak.host | default (get (urlParse .Values.global.airbyteUrl) " host" ) } }
31
31
{ {- end } }
32
32
33
33
{ {/*
You can’t perform that action at this time.
0 commit comments