From 09f0664128943c3b06e543bdcca37a90b202e8d5 Mon Sep 17 00:00:00 2001 From: William Chhim Date: Thu, 6 Oct 2022 16:40:13 +0200 Subject: [PATCH] fix(charts): fix the service name used by the helm test --- charts/airbyte/templates/tests/test-webapp.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/airbyte/templates/tests/test-webapp.yaml b/charts/airbyte/templates/tests/test-webapp.yaml index 823da96dc134..a459dddd7c64 100644 --- a/charts/airbyte/templates/tests/test-webapp.yaml +++ b/charts/airbyte/templates/tests/test-webapp.yaml @@ -12,5 +12,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ['{{ include "common.names.fullname" . }}-webapp:{{ .Values.webapp.service.port }}'] + args: ['{{ .Release.Name }}-airbyte-webapp-svc:{{ .Values.webapp.service.port }}'] restartPolicy: Never