Skip to content

Commit 65d899e

Browse files
authored
chore: allow additional settings (#8)
1 parent d67ec2f commit 65d899e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

charts/connector/templates/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ spec:
1414
loadBalancerSourceRanges:
1515
{{- toYaml . | nindent 4 }}
1616
{{- end }}
17+
{{- with .Values.service.loadBalancerClass }}
18+
loadBalancerClass: {{- toYaml . | nindent 4 }}
19+
{{- end }}
1720
ports:
1821
{{- range .Values.ports }}
1922
- port: {{ .port }}

charts/connector/templates/serviceaccount.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@ metadata:
55
name: {{ include "connector.serviceAccountName" . }}
66
labels:
77
{{- include "connector.labels" . | nindent 4 }}
8+
{{- with .Values.serviceAccount.annotations }}
9+
annotations:
10+
{{ . | toYaml | nindent 4 }}
11+
{{- end }}
812
{{- end }}

0 commit comments

Comments
 (0)