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 }}