Baoyuantop commented on issue #529:
URL: 
https://github.com/apache/apisix-helm-chart/issues/529#issuecomment-4205354069

   The current chart fully supports connecting to external etcd via HTTPS/TLS. 
Configure the following in `values.yaml`:
   
   ```yaml
   etcd:
     enabled: false  # disable built-in etcd
     host:
       - "https://your-etcd-host:2379";
     auth:
       tls:
         enabled: true
         existingSecret: "your-etcd-tls-secret"  # Secret with certs
         certFilename: "cert.pem"
         certKeyFilename: "key.pem"
         verify: true
         sni: ""
   ```
   
   See values.yaml lines 648-666 for all etcd TLS options. The Secret should 
contain the client certificate, client key, and optionally the CA certificate.
   
   Closing as this is a usage question. The chart supports this functionality. 
If you still have questions, please feel free to reopen.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to