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

Commit

Permalink
Fix for large int that Helm was changing to scientific notation (#3635)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknezis authored Nov 23, 2020
1 parent 83b8226 commit 72d6374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/kubernetes/helm/templates/bookie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ data:
BK_autoRecoveryDaemonEnabled: "true"
BK_journalMaxBackups: "{{ .Values.bookieJournalMaxBackups }}"
BK_journalMaxSizeMB: "{{ .Values.bookieJournalMaxSizeMB }}"
BK_logSizeLimit: "{{ .Values.bookieLogSizeLimit }}"
BK_logSizeLimit: "{{ int64 .Values.bookieLogSizeLimit }}"
{{- if or (eq .Values.platform "gke") (eq .Values.platform "minikube") }}
BK_useHostNameAsBookieID: "true"
{{- end }}
Expand Down

0 comments on commit 72d6374

Please sign in to comment.