You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by yo...@apache.org on 2022/06/15 01:42:20 UTC

[pulsar-helm-chart] branch master updated: Enable the pulsar manager in the minikube values (#270)

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

yong 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 f2266c4  Enable the pulsar manager in the minikube values (#270)
f2266c4 is described below

commit f2266c4295fe147fe0174a1861dfbefa3f3b5ba3
Author: Yong Zhang <zh...@gmail.com>
AuthorDate: Wed Jun 15 09:42:16 2022 +0800

    Enable the pulsar manager in the minikube values (#270)
    
    ---
    
    Fixes: https://github.com/apache/pulsar/issues/15927
    
    ### Motivation
    
    We have documented the using pulsar manager in the Getting started
    with helm in the pulsar website. We should enable the pulsar manager
    by default in the minikube values.
    
    ### Modifications
    
    - enable the pulsar manager by default in the minikube values.
---
 examples/values-minikube.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/values-minikube.yaml b/examples/values-minikube.yaml
index 2cd2a22..8f6c7cf 100644
--- a/examples/values-minikube.yaml
+++ b/examples/values-minikube.yaml
@@ -28,6 +28,7 @@ affinity:
 # disable auto recovery
 components:
   autorecovery: false
+  pulsar_manager: true
 
 zookeeper:
   replicaCount: 1
@@ -47,4 +48,4 @@ broker:
     managedLedgerDefaultAckQuorum: "1"
 
 proxy:
-  replicaCount: 1
\ No newline at end of file
+  replicaCount: 1