This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch fix-etcd in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 482ca15eb3753bbb6db55e9027f687a461738c58 Author: Xuanwo <[email protected]> AuthorDate: Tue Nov 21 12:50:56 2023 +0800 ci: Fix etcd with tls and auth failed to start Signed-off-by: Xuanwo <[email protected]> --- fixtures/etcd/docker-compose-standalone-tls.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fixtures/etcd/docker-compose-standalone-tls.yml b/fixtures/etcd/docker-compose-standalone-tls.yml index ac349fda9..a1a4aea52 100644 --- a/fixtures/etcd/docker-compose-standalone-tls.yml +++ b/fixtures/etcd/docker-compose-standalone-tls.yml @@ -37,3 +37,8 @@ services: ETCD_TRUSTED_CA_FILE: /opt/bitnami/etcd/conf/ca.pem ETCD_KEY_FILE: /opt/bitnami/etcd/conf/server-key.pem ETCD_CERT_FILE: /opt/bitnami/etcd/conf/server.pem + # Etcd returns `MY_STS_NAME` unbound error if `ETCD_ROOT_PASSWORD` has been set. + # We place this trick to make etcd happy. + # + # Remove this after https://github.com/bitnami/containers/issues/53068 closed. + MY_STS_NAME: ""
