fix: remove spaces

This commit is contained in:
log101 2025-03-01 08:28:35 +03:00
parent 66d4a0c842
commit 1cf5f91f49

View File

@ -1,13 +1,13 @@
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: { { include "chart.fullname" . } } name: {{ include "chart.fullname" . }}
labels: { { - include "chart.labels" . | nindent 4 } } labels: {{ - include "chart.labels" . | nindent 4 }}
spec: spec:
type: { { .Values.service.type } } type: {{ .Values.service.type }}
ports: ports:
- port: { { .Values.service.port } } - port: {{ .Values.service.port }}
targetPort: http targetPort: http
protocol: TCP protocol: TCP
name: http name: http
selector: { { - include "chart.selectorLabels" . | nindent 4 } } selector: {{ - include "chart.selectorLabels" . | nindent 4 }}