From 1c7fb64ff23b7ba12d4d5ed8d8ec6bb01f876ec0 Mon Sep 17 00:00:00 2001 From: akiyamn Date: Tue, 19 Jul 2022 10:46:27 +1000 Subject: Initial --- chart/templates/tests/test-connection.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 chart/templates/tests/test-connection.yaml (limited to 'chart/templates/tests') diff --git a/chart/templates/tests/test-connection.yaml b/chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..8dfed87 --- /dev/null +++ b/chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "chart.fullname" . }}-test-connection" + labels: + {{- include "chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never -- cgit v1.2.3