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

Commit 72d6374

Browse files
authored
Fix for large int that Helm was changing to scientific notation (#3635)
1 parent 83b8226 commit 72d6374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/kubernetes/helm/templates/bookie.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ data:
4444
BK_autoRecoveryDaemonEnabled: "true"
4545
BK_journalMaxBackups: "{{ .Values.bookieJournalMaxBackups }}"
4646
BK_journalMaxSizeMB: "{{ .Values.bookieJournalMaxSizeMB }}"
47-
BK_logSizeLimit: "{{ .Values.bookieLogSizeLimit }}"
47+
BK_logSizeLimit: "{{ int64 .Values.bookieLogSizeLimit }}"
4848
{{- if or (eq .Values.platform "gke") (eq .Values.platform "minikube") }}
4949
BK_useHostNameAsBookieID: "true"
5050
{{- end }}

0 commit comments

Comments
 (0)