Skip to content

Commit ff9a4fc

Browse files
committed
chore: fix connector builder local dev (#16886)
1 parent ccfbcc6 commit ff9a4fc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

charts/v2/airbyte/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ keycloak:
618618

619619
- env: KEYCLOAK_HOST
620620
key: host
621-
valueExp: (get (urlParse .Values.global.airbyteUrl) "host")
621+
defaultValueExp: (get (urlParse .Values.global.airbyteUrl) "host")
622622

623623
- env: KEYCLOAK_PORT
624624
key: service.port

charts/v2/airbyte/templates/airbyte-connector-builder-server/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ spec:
8080
{{- if (eq .Values.global.edition "enterprise") }}
8181
{{- include "airbyte.enterprise.envs" . | nindent 8 }}
8282
{{- include "airbyte.auth.identityProvider.envs" . | nindent 8 }}
83+
{{- include "airbyte.keycloak.envs" . | nindent 8 }}
8384
{{- end }}
8485

8586
{{- if (eq .Values.global.edition "cloud") }}

charts/v2/airbyte/templates/config/_keycloak.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Renders the keycloak.url environment variable
2727
Renders the keycloak.host value
2828
*/}}
2929
{{- define "airbyte.keycloak.host" }}
30-
{{- (get (urlParse .Values.global.airbyteUrl) "host") }}
30+
{{- .Values.keycloak.host | default (get (urlParse .Values.global.airbyteUrl) "host") }}
3131
{{- end }}
3232

3333
{{/*

0 commit comments

Comments
 (0)