[bitnami/clickhouse] Fix rendering of CIDR block list for loadBalancerSourceRanges (#15511)

Signed-off-by: Alexandru Jieanu <alexandru.jieanu@gmail.com>
This commit is contained in:
Alexandru Jieanu
2023-03-17 10:40:02 +02:00
committed by GitHub
parent cc7ca98690
commit fd3983f6b5
2 changed files with 2 additions and 2 deletions

View File

@@ -26,4 +26,4 @@ name: clickhouse
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/clickhouse
- https://github.com/ClickHouse/ClickHouse
version: 3.1.1
version: 3.1.2

View File

@@ -32,7 +32,7 @@ spec:
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
{{- end }}
{{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerSourceRanges)) }}
loadBalancerSourceRanges: {{ .Values.service.loadBalancerSourceRanges }}
loadBalancerSourceRanges: {{- toYaml .Values.service.loadBalancerSourceRanges | nindent 4 }}
{{- end }}
{{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP)) }}
loadBalancerIP: {{ .Values.service.loadBalancerIP }}