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 a46729c commit 1e93afbCopy full SHA for 1e93afb
helm/chart/router/templates/service.yaml
@@ -4,6 +4,10 @@ metadata:
4
name: {{ include "router.fullname" . }}
5
labels:
6
{{- include "router.labels" . | nindent 4 }}
7
+ {{- with .Values.service.annotations }}
8
+ annotations:
9
+ {{- toYaml . | nindent 4 }}
10
+ {{- end }}
11
spec:
12
type: {{ .Values.service.type }}
13
ports:
@@ -13,3 +17,4 @@ spec:
17
name: http
14
18
selector:
15
19
{{- include "router.selectorLabels" . | nindent 4 }}
20
+
helm/chart/router/values.yaml
@@ -80,6 +80,7 @@ securityContext: {}
80
service:
81
type: ClusterIP
82
port: 80
83
+ annotations: {}
84
85
ingress:
86
enabled: false
0 commit comments