Skip to content

Commit

Permalink
[Stable/rethinkdb] Fix rethinkdb cluster ip field is immutable (helm#…
Browse files Browse the repository at this point in the history
…22818)

Signed-off-by: junchil <[email protected]>
Signed-off-by: Adrien Loiseau <[email protected]>
  • Loading branch information
junchil authored and li-adrienloiseau committed Jul 29, 2020
1 parent 4489293 commit 2913cfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/rethinkdb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: rethinkdb
description: The open-source database for the realtime web
version: 1.1.1
version: 1.1.2
appVersion: 0.1.0
keywords:
- rethinkdb
Expand Down
4 changes: 3 additions & 1 deletion stable/rethinkdb/templates/rethinkdb-proxy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ metadata:
{{- end }}
spec:
type: {{ .Values.proxy.service.type }}
clusterIP: "{{ .Values.proxy.service.clusterIP }}"
{{- if .Values.proxy.service.clusterIP }}
clusterIP: {{ .Values.proxy.service.clusterIP | quote }}
{{- end }}
{{- if .Values.proxy.service.externalIPs }}
externalIPs:
{{ toYaml .Values.proxy.service.externalIPs | indent 4 }}
Expand Down

0 comments on commit 2913cfa

Please sign in to comment.