From 5398b99514b196d6af33584623cffc7990cbb0b5 Mon Sep 17 00:00:00 2001 From: JPRbrs Date: Tue, 17 Nov 2020 15:35:07 +0800 Subject: [PATCH] fix-test-pod (#56) fix-test-pod service name and port was wrong and was preventing the helm chart deployment Co-authored-by: javier Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/56 Reviewed-by: techknowlogick Reviewed-by: luhahn Co-Authored-By: JPRbrs Co-Committed-By: JPRbrs --- .../tests/{test-connection.yaml => test-http-connection.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename templates/tests/{test-connection.yaml => test-http-connection.yaml} (77%) diff --git a/templates/tests/test-connection.yaml b/templates/tests/test-http-connection.yaml similarity index 77% rename from templates/tests/test-connection.yaml rename to templates/tests/test-http-connection.yaml index 2a5fd54..7fab1b7 100644 --- a/templates/tests/test-connection.yaml +++ b/templates/tests/test-http-connection.yaml @@ -11,5 +11,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ['{{ include "gitea.fullname" . }}:{{ .Values.service.port }}'] + args: ['{{ include "gitea.fullname" . }}-http:{{ .Values.service.http.port }}'] restartPolicy: Never