We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04dbee1 commit d9210b6Copy full SHA for d9210b6
1 file changed
tests/charts/umbrella-application/charts/app/templates/service.yaml
@@ -2,14 +2,14 @@
2
apiVersion: v1
3
kind: Service
4
metadata:
5
- name: { { include "app.fullname" . } }
6
- namespace: { { .Values.namespace } }
7
- labels: { { - include "app.labels" . | nindent 4 } }
+ name: {{ include "app.fullname" . }}
+ namespace: {{ .Values.namespace }}
+ labels: {{- include "app.labels" . | nindent 4 }}
8
spec:
9
- type: { { .Values.service.type } }
+ type: {{ .Values.service.type }}
10
ports:
11
- - port: { { .Values.service.port } }
+ - port: {{ .Values.service.port }}
12
targetPort: http
13
protocol: TCP
14
name: http
15
- selector: { { - include "app.selectorLabels" . | nindent 4 } }
+ selector: {{- include "app.selectorLabels" . | nindent 4 }}
0 commit comments