This is an automated email from the ASF dual-hosted git repository. guangning pushed a commit to branch branch-2.5 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 965c7b7160a44572bd3518d2cb364a6c6939240a Author: John Harris <[email protected]> AuthorDate: Fri Feb 21 22:07:10 2020 -0800 [Issue 6355][HELM] autorecovery - could not find or load main class (#6373) This applies the recommended fix from https://github.com/apache/pulsar/issues/6355#issuecomment-587756717 Fixes #6355 ### Motivation This PR corrects the configmap data which was causing the autorecovery pod to crashloop with `could not find or load main class` ### Modifications Updated the configmap var data per [this comment](https://github.com/apache/pulsar/issues/6355#issuecomment-587756717) from @sijie --- deployment/kubernetes/helm/pulsar/values-mini.yaml | 2 +- deployment/kubernetes/helm/pulsar/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/kubernetes/helm/pulsar/values-mini.yaml b/deployment/kubernetes/helm/pulsar/values-mini.yaml index fa23cc9..ff899fc 100644 --- a/deployment/kubernetes/helm/pulsar/values-mini.yaml +++ b/deployment/kubernetes/helm/pulsar/values-mini.yaml @@ -277,7 +277,7 @@ autoRecovery: ## templates/autorecovery-configmap.yaml ## configData: - PULSAR_MEM: "\" -Xms64m -Xmx128m \"" + BOOKIE_MEM: "\" -Xms64m -Xmx128m \"" ## Pulsar Extra: Dashboard ## templates/dashboard-deployment.yaml diff --git a/deployment/kubernetes/helm/pulsar/values.yaml b/deployment/kubernetes/helm/pulsar/values.yaml index 3132e65..4fa2499 100644 --- a/deployment/kubernetes/helm/pulsar/values.yaml +++ b/deployment/kubernetes/helm/pulsar/values.yaml @@ -311,7 +311,7 @@ autoRecovery: ## templates/autorecovery-configmap.yaml ## configData: - PULSAR_MEM: "\" -Xms1g -Xmx1g \"" + BOOKIE_MEM: "\" -Xms1g -Xmx1g \"" ## Pulsar Extra: Dashboard ## templates/dashboard-deployment.yaml
