zilliztech / milvus-helm

Apache License 2.0
56 stars 43 forks source link

Does the external etcd cluster support etcd certificates? #37

Open dotbalo opened 11 months ago

dotbalo commented 11 months ago

I looked through some deployment documents and did not find any place to configure etcd SSL certificates. There is only a bit of configuration below. Does this support etcd cluster certificates?

externalEtcd:
  enabled: true
  ## the endpoints of the external etcd
  ##
  endpoints:
    - 10.0.0.9:2379
  rootPath: milvus
haorenfsa commented 9 months ago

em.. seems no for now

ViokingTung commented 8 months ago

related to https://github.com/milvus-io/milvus/issues/28895

haorenfsa commented 8 months ago

@dotbalo Sry, my mistake. It's already supported. Add values like below when installing milvus:

extraConfigFiles:
  user.yaml: |
    etcd: 
      ssl: 
        enabled: true
        # ...

reference: image