From 8018a0972326397a15d065a76a5069d50e827bfc Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Wed, 27 Mar 2024 12:12:05 +0100 Subject: [PATCH] fix(tests): the test-connection should call the health check endpoint --- charts/spotify-auth-proxy/templates/tests/test-connection.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/spotify-auth-proxy/templates/tests/test-connection.yaml b/charts/spotify-auth-proxy/templates/tests/test-connection.yaml index a475a47..ac97844 100644 --- a/charts/spotify-auth-proxy/templates/tests/test-connection.yaml +++ b/charts/spotify-auth-proxy/templates/tests/test-connection.yaml @@ -11,5 +11,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ['{{ include "spotify-auth-proxy.fullname" . }}:{{ .Values.service.port }}'] + args: ['{{ include "spotify-auth-proxy.fullname" . }}:{{ .Values.service.port }}/{{ .Values.livenessProbe.httpGet.path }}'] restartPolicy: Never