From df848076a1af20fb220c9ef05fc199c1b5e0d7b6 Mon Sep 17 00:00:00 2001 From: Octavia Squidington III <90398440+octavia-squidington-iii@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:42:59 -0700 Subject: [PATCH] fix(helm): template for `airbyte-workload-api-server` (GCS logging) (#14043) Co-authored-by: Brian Storti Co-authored-by: perangel --- charts/airbyte-workload-api-server/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/airbyte-workload-api-server/templates/deployment.yaml b/charts/airbyte-workload-api-server/templates/deployment.yaml index de85ca52b76..9b7fb889f9b 100644 --- a/charts/airbyte-workload-api-server/templates/deployment.yaml +++ b/charts/airbyte-workload-api-server/templates/deployment.yaml @@ -165,7 +165,7 @@ spec: containerPort: 8007 protocol: TCP {{- if .Values.debug.enabled }} - - name: debug + - name: debug containerPort: {{ .Values.debug.remoteDebugPort }} protocol: TCP {{- end }} @@ -198,7 +198,7 @@ spec: {{- if and (eq .Values.global.deploymentMode "oss") (eq (lower (default "" .Values.global.storage.type)) "gcs") }} - name: gcs-log-creds-volume secret: - secretName: {{ ternary (printf "%s-gcs-log-creds" ( .Release.Name )) (.Values.global.credVolumeOverride) (eq .Values.global.deploymentMode "oss") }} + secretName: {{ ternary (printf "%s-gcs-log-creds" ( .Release.Name )) .Values.global.storage.storageSecretName (not ((.Values.global.storage).storageSecretName)) }} {{- end }} {{- if .Values.extraVolumes }} {{- toYaml .Values.extraVolumes | nindent 6 }}