Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 4bca2e5

Browse files
the-scott-handnwangtw
authored andcommitted
BUG: bookie statefulset helm template specifies incorrect service name (#3410)
* Update bookie template to use correct service name * helm add bookie toleration for unready endpoints
1 parent d8db1c5 commit 4bca2e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

deploy/kubernetes/helm/templates/bookie.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ metadata:
7171
component: {{ .Release.Name }}-bookie
7272
spec:
7373
{{- if or (eq .Values.platform "gke") (eq .Values.platform "minikube") }}
74-
serviceName: {{ .Release.Name }}-bookkeeper
74+
serviceName: {{ .Release.Name }}-bookie
7575
replicas: {{ $bookieReplicas }}
7676
{{- end }}
7777

@@ -200,6 +200,10 @@ spec:
200200
apiVersion: v1
201201
kind: Service
202202
metadata:
203+
{{- if or (eq .Values.platform "gke") (eq .Values.platform "minikube") }}
204+
annotations:
205+
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
206+
{{- end }}
203207
name: {{ .Release.Name }}-bookie
204208
labels:
205209
app: {{ .Release.Name }}-bookkeeper

0 commit comments

Comments
 (0)