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

unknown field "endpoints" in io.milvus.v1beta1.Milvus.spec.dependencies.pulsar

Open welyss opened this issue 1 year ago • 0 comments

doc: https://github.com/zilliztech/milvus-operator/blob/main/docs/CRD/milvus.md

spec:
  # ... Skipped fields
  dependencies: # Optional
    pulsar: # Optional
      # Whether (=true) to use an existed external pulsar as specified in the field endpoints or 
      # (=false) create a new pulsar inside the same kubernetes cluster for milvus.
      external: false # Optional default=false
      # The external pulsar endpoints if external=true
      endpoints:
      - 192.168.1.1:6650
      # in-Cluster pulsar configuration if external=false
      inCluster: 
        # deletionPolicy of pulsar when the milvus cluster is deleted
        deletionPolicy: Retain # Optional ("Delete", "Retain") default="Retain"
        # When deletionPolicy="Delete" whether the PersistantVolumeClaim shoud be deleted when the pulsar is deleted
        pvcDeletion: false # Optional default=false
        # ... Skipped fields
    # ... Skipped fields

version: milvus-operator:v1.2.1 i tried "endpoint: xxxx:6650", works, doc wrong or bug

welyss avatar Mar 03 '25 07:03 welyss