milvus-helm icon indicating copy to clipboard operation
milvus-helm copied to clipboard

externalPulsar.enabled property isn't honored

Open david-streamlio opened this issue 1 year ago • 2 comments

When I install Milvus from the latest Helm chart using the following command, I see that pulsar and all of the associated pods are created.

Steps to reproduce:

  1. helm repo add milvus https://zilliztech.github.io/milvus-helm/
  2. helm repo update
  3. helm install milvus-test --set externalPulsar.enabled=true milvus/milvus
  4. kubectl get pods | grep pulsar

david-streamlio avatar Aug 12 '24 00:08 david-streamlio

@david-streamlio You need manually disable default pulsar pods like this:

helm install milvus-test --set externalPulsar.enabled=true --set pulsarv3.enabled=false milvus/milvus

LoveEachDay avatar Jun 25 '25 08:06 LoveEachDay

@LoveEachDay Maybe we should add condition check to auto disable pulsarv3 when externalPulsar.enable is set?

haorenfsa avatar Jun 25 '25 17:06 haorenfsa