We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac0b541 + 5b8986b commit 7bcd2eeCopy full SHA for 7bcd2ee
1 file changed
charts/tinyauth/templates/service.yaml
@@ -1,13 +1,15 @@
1
apiVersion: v1
2
kind: Service
3
metadata:
4
- name: { { include "tinyauth.fullname" . } }
5
- labels: { { - include "tinyauth.labels" . | nindent 4 } }
+ name: {{ include "tinyauth.fullname" . }}
+ labels:
6
+ {{- include "tinyauth.labels" . | nindent 4 }}
7
spec:
- type: { { .Values.service.type } }
8
+ type: {{ .Values.service.type }}
9
ports:
- - port: { { .Values.service.port } }
10
+ - port: {{ .Values.service.port }}
11
targetPort: http
12
protocol: TCP
13
name: http
- selector: { { - include "tinyauth.selectorLabels" . | nindent 4 } }
14
+ selector:
15
+ {{- include "tinyauth.selectorLabels" . | nindent 4 }}
0 commit comments