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

lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new 608d621  Update standalone defaults to use zookeeper (#675)
608d621 is described below

commit 608d62181747903f69d8cbf5e99a04eaabcb4b87
Author: Shaun Becker <[email protected]>
AuthorDate: Mon Apr 27 03:26:42 2026 -0400

    Update standalone defaults to use zookeeper (#675)
    
    * Update standalone defaults to use zookeeper
    
    * Move PULSAR_STANDALONE_USE_ZOOKEEPER to standalone-configmap.yaml
    
    ---------
    
    Co-authored-by: Lari Hotari <[email protected]>
---
 charts/pulsar/templates/standalone-configmap.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/charts/pulsar/templates/standalone-configmap.yaml 
b/charts/pulsar/templates/standalone-configmap.yaml
index ee6aa5b..7e8f125 100644
--- a/charts/pulsar/templates/standalone-configmap.yaml
+++ b/charts/pulsar/templates/standalone-configmap.yaml
@@ -29,6 +29,11 @@ metadata:
 data:
   clusterName: {{ template "pulsar.cluster.name" . }}
 
+  # Use embedded ZooKeeper as the metadata store. Set to "0" in values.yaml to 
use RocksDB instead.
+  # ZooKeeper is preferred here because it is more battle-tested as a Pulsar 
metadata store
+  # and leaves the door open for migrating the data to a real cluster later.
+  PULSAR_STANDALONE_USE_ZOOKEEPER: "1"
+
   # Standalone-specific defaults: single-node replication
   managedLedgerDefaultEnsembleSize: "1"
   managedLedgerDefaultWriteQuorum: "1"

Reply via email to