From 1d930fe5e3949e3a62798d3a9ed56c37bcdeb88e Mon Sep 17 00:00:00 2001 From: Dmytro Bondar Date: Wed, 18 Sep 2024 11:28:14 +0200 Subject: [PATCH] Fix chart lint issue --- deploy/helm/templates/service.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/helm/templates/service.yaml b/deploy/helm/templates/service.yaml index 1f8dd4b..1b38d3f 100644 --- a/deploy/helm/templates/service.yaml +++ b/deploy/helm/templates/service.yaml @@ -6,9 +6,9 @@ {{- end -}} {{- if .Values.service.mixed.enabled -}} -{{- include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.mixed "ports" (concat $portsWeb $ports)) }} +{{ include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.mixed "ports" (concat $portsWeb $ports)) }} {{- else }} -{{- include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.web "ports" $portsWeb) }} +{{ include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.web "ports" $portsWeb) }} --- -{{- include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.wireguard "ports" $ports "name" "wireguard") }} +{{ include "wg-portal.service.tpl" (dict "context" . "scope" .Values.service.wireguard "ports" $ports "name" "wireguard") }} {{- end -}}