This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 72d6374  Fix for large int that Helm was changing to scientific 
notation (#3635)
72d6374 is described below

commit 72d63740635cde05265bd06f14ea4a9d176a397b
Author: Nicholas Nezis <[email protected]>
AuthorDate: Mon Nov 23 18:18:54 2020 -0500

    Fix for large int that Helm was changing to scientific notation (#3635)
---
 deploy/kubernetes/helm/templates/bookie.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy/kubernetes/helm/templates/bookie.yaml 
b/deploy/kubernetes/helm/templates/bookie.yaml
index dea6f69..12e174f 100644
--- a/deploy/kubernetes/helm/templates/bookie.yaml
+++ b/deploy/kubernetes/helm/templates/bookie.yaml
@@ -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 }}

Reply via email to