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

Commit

Permalink
correct reference to values in yaml file (#3632)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfischer1108 authored Nov 20, 2020
1 parent bbe2e89 commit 5bde52f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/kubernetes/helm/templates/bookie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ data:
BK_indexDirectories: "/bookkeeper/data/ledgers"
BK_zkServers: {{ .Release.Name }}-zookeeper:{{ .Values.zookeeper.clientPort }}
BK_autoRecoveryDaemonEnabled: "true"
BK_journalMaxBackups: {{ .Values.bookieJournalMaxBackups }}
BK_journalMaxSizeMB: {{ .Values.bookieJournalMaxSizeMB }}
BK_logSizeLimit: {{ .Values.bookieLogSizeLimit }}
BK_journalMaxBackups: "{{ .Values.bookieJournalMaxBackups }}"
BK_journalMaxSizeMB: "{{ .Values.bookieJournalMaxSizeMB }}"
BK_logSizeLimit: "{{ .Values.bookieLogSizeLimit }}"
{{- if or (eq .Values.platform "gke") (eq .Values.platform "minikube") }}
BK_useHostNameAsBookieID: "true"
{{- end }}
Expand Down

0 comments on commit 5bde52f

Please sign in to comment.