Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[Stable/rethinkdb] Fix rethinkdb cluster ip field is immutable #22818

Merged
merged 1 commit into from
Jul 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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