From 20ec1fe4b0e818e0ce47b800ab5509815b62142f Mon Sep 17 00:00:00 2001 From: Marius Ensrud Date: Wed, 2 Sep 2020 19:44:26 +0200 Subject: [PATCH] rename helper --- .../omada-controller/templates/tests/test-connection.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/omada-controller/templates/tests/test-connection.yaml b/charts/omada-controller/templates/tests/test-connection.yaml index 1735fab..fae35f5 100644 --- a/charts/omada-controller/templates/tests/test-connection.yaml +++ b/charts/omada-controller/templates/tests/test-connection.yaml @@ -1,9 +1,9 @@ apiVersion: v1 kind: Pod metadata: - name: "{{ include "rsyncd.fullname" . }}-test-connection" + name: "{{ include "omada-controller.fullname" . }}-test-connection" labels: - {{- include "rsyncd.labels" . | nindent 4 }} + {{- include "omada-controller.labels" . | nindent 4 }} annotations: "helm.sh/hook": test-success spec: @@ -11,5 +11,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ['{{ include "rsyncd.fullname" . }}:{{ .Values.service.port }}'] + args: ['{{ include "omada-controller.fullname" . }}:{{ .Values.service.port }}'] restartPolicy: Never