We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d67ec2f commit 65d899eCopy full SHA for 65d899e
charts/connector/templates/service.yaml
@@ -14,6 +14,9 @@ spec:
14
loadBalancerSourceRanges:
15
{{- toYaml . | nindent 4 }}
16
{{- end }}
17
+ {{- with .Values.service.loadBalancerClass }}
18
+ loadBalancerClass: {{- toYaml . | nindent 4 }}
19
+ {{- end }}
20
ports:
21
{{- range .Values.ports }}
22
- port: {{ .port }}
charts/connector/templates/serviceaccount.yaml
@@ -5,4 +5,8 @@ metadata:
5
name: {{ include "connector.serviceAccountName" . }}
6
labels:
7
{{- include "connector.labels" . | nindent 4 }}
8
+ {{- with .Values.serviceAccount.annotations }}
9
+ annotations:
10
+ {{ . | toYaml | nindent 4 }}
11
12
0 commit comments