jiangxiulong opened a new issue, #689: URL: https://github.com/apache/apisix-helm-chart/issues/689
# description I am installing Apisix and Apisix dashboard, useing: `helm install apisix ./apisix-2.5.0.tgz -f apisix-values.yaml -n apisix` But the etcd of Apisix still prompts to connect“ http://etcd.host:2379/version "The configuration of configmap has not changed, but enabled: false has taken effect because it did not start etcd on its own. I tried to manually change configmap, which is normal." # questions May I ask why it will partially take effect? I don't want to specify that I still need to manually change the configmap Also, can the endpoints of the dashboard be set with the same host, user, and password as those of Apisix? I don't quite understand the endpoints # apisix values.yaml ``` etcd: enabled: false host: - "http://xxxxx:2379" user: "user" password: "password" dashboard: enabled: true config: conf: etcd: endpoints: - "http://xxxxx:2379" username: username password: password ``` # apisix configmap ``` etcd: host: # it's possible to define multiple etcd hosts addresses of the same etcd cluster. - "http://etcd.host:2379" # multiple etcd address prefix: "/apisix" # configuration prefix in etcd timeout: 30 # 30 seconds user: "root" password: "${{ APISIX_ETCD_PASSWORD }}" ``` # Thank you for your answer -- 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: notifications-unsubscr...@apisix.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org