Skip to content

Commit

Permalink
fix(chart): use http scheme for INTERNAL_API_HOST
Browse files Browse the repository at this point in the history
  • Loading branch information
justenwalker committed Dec 7, 2023
1 parent 13b286c commit 584a3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/airbyte/templates/env-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data:
DB_DOCKER_MOUNT: airbyte_db
GCS_LOG_BUCKET: {{ .Values.global.logs.gcs.bucket | quote }}
GOOGLE_APPLICATION_CREDENTIALS: {{ include "airbyte.gcpLogCredentialsPath" . | quote }}
INTERNAL_API_HOST: {{ .Release.Name }}-airbyte-server-svc:{{ .Values.server.service.port }}
INTERNAL_API_HOST: {{ printf "http://%s-airbyte-server-svc:-%d" .Release.Name (index .Values "server" "service" "port") }}
{{- if eq (index .Values "workload-api-server" "enabled") true }}
# Temporary conditional for OSS deploys. Eventually, the workload-api will be present in OSS deploys and the else
# block can be removed
Expand Down

0 comments on commit 584a3ba

Please sign in to comment.