This is an automated email from the ASF dual-hosted git repository. nicknezis pushed a commit to branch nicknezis/helm-scientific-notation-fix in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit 7cb114770b44771f4af78728343971391161253e Author: Nicholas Nezis <[email protected]> AuthorDate: Mon Nov 23 19:33:35 2020 +0000 Adding quotes around value that Helm was changing --- deploy/kubernetes/helm/values.yaml.template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/kubernetes/helm/values.yaml.template b/deploy/kubernetes/helm/values.yaml.template index 5e4dce7..5258190 100644 --- a/deploy/kubernetes/helm/values.yaml.template +++ b/deploy/kubernetes/helm/values.yaml.template @@ -66,7 +66,8 @@ bookieJournalCapacity: 5G bookieStorageCapacity: 15G bookieJournalMaxBackups: 3 bookieJournalMaxSizeMB: 300 -bookieLogSizeLimit: 10000000 +# This needs to be in quotes to protect from Helm scientific notation problem +bookieLogSizeLimit: "10000000" # Number of replicas for zookeeper zkReplicas: 3
