From 88ff51553ddaaa2ac1b84fd0c300710dd524d616 Mon Sep 17 00:00:00 2001 From: Luka <57399897+Erzangel@users.noreply.github.com> Date: Mon, 7 Aug 2023 08:27:02 +0200 Subject: [PATCH] feat: use attu svc port variable in template (#473) The default values file has a `port` field, which is never used. This commit makes the attu-svc template use the specified value. Signed-off-by: Luka Bigot --- charts/milvus/templates/attu-svc.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/milvus/templates/attu-svc.yaml b/charts/milvus/templates/attu-svc.yaml index a6f2966..edff6f6 100644 --- a/charts/milvus/templates/attu-svc.yaml +++ b/charts/milvus/templates/attu-svc.yaml @@ -34,9 +34,9 @@ spec: ports: - name: attu protocol: TCP - port: 3000 + port: {{ .Values.attu.service.port }} targetPort: 3000 selector: {{ include "milvus.matchLabels" . | indent 4 }} component: "attu" -{{- end }} \ No newline at end of file +{{- end }}