From 1cf5f91f494209e940fd1b57d9b4d4b819e0675d Mon Sep 17 00:00:00 2001 From: log101 Date: Sat, 1 Mar 2025 08:28:35 +0300 Subject: [PATCH] fix: remove spaces --- chart/templates/service.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/chart/templates/service.yaml b/chart/templates/service.yaml index 8451ce1..7800d67 100644 --- a/chart/templates/service.yaml +++ b/chart/templates/service.yaml @@ -1,13 +1,13 @@ apiVersion: v1 kind: Service metadata: - name: { { include "chart.fullname" . } } - labels: { { - include "chart.labels" . | nindent 4 } } + name: {{ include "chart.fullname" . }} + labels: {{ - include "chart.labels" . | nindent 4 }} spec: - type: { { .Values.service.type } } + type: {{ .Values.service.type }} ports: - - port: { { .Values.service.port } } + - port: {{ .Values.service.port }} targetPort: http protocol: TCP name: http - selector: { { - include "chart.selectorLabels" . | nindent 4 } } + selector: {{ - include "chart.selectorLabels" . | nindent 4 }}