Skip to content

Commit 5b8986b

Browse files
committed
labels and selector should be on their own lines
1 parent 7988c9d commit 5b8986b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

charts/tinyauth/templates/service.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ apiVersion: v1
22
kind: Service
33
metadata:
44
name: {{ include "tinyauth.fullname" . }}
5-
labels: {{- include "tinyauth.labels" . | nindent 4 }}
5+
labels:
6+
{{- include "tinyauth.labels" . | nindent 4 }}
67
spec:
78
type: {{ .Values.service.type }}
89
ports:
910
- port: {{ .Values.service.port }}
1011
targetPort: http
1112
protocol: TCP
1213
name: http
13-
selector: {{- include "tinyauth.selectorLabels" . | nindent 4 }}
14+
selector:
15+
{{- include "tinyauth.selectorLabels" . | nindent 4 }}

0 commit comments

Comments
 (0)