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 0b365ea2f314443b7d8c9794d30b75c9f10ec70f Author: Xuanwo <[email protected]> AuthorDate: Tue Nov 21 14:06:25 2023 +0800 ci(services/etcd): Use ALLOW_NONE_AUTHENTICATION as workaround Signed-off-by: Xuanwo <[email protected]> --- fixtures/etcd/docker-compose-standalone-tls.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fixtures/etcd/docker-compose-standalone-tls.yml b/fixtures/etcd/docker-compose-standalone-tls.yml index a1a4aea52..93f9b2518 100644 --- a/fixtures/etcd/docker-compose-standalone-tls.yml +++ b/fixtures/etcd/docker-compose-standalone-tls.yml @@ -29,7 +29,12 @@ services: - ./client-key.pem:/opt/bitnami/etcd/client-key.pem - ./client.pem:/opt/bitnami/etcd/client.pem environment: - ETCD_ROOT_PASSWORD: opendal + # 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. + # ETCD_ROOT_PASSWORD: opendal + ALLOW_NONE_AUTHENTICATION: "yes" ETCD_NAME: etcd ETCD_LISTEN_CLIENT_URLS: https://0.0.0.0:2379 ETCD_ADVERTISE_CLIENT_URLS: https://etcd:2379 @@ -37,8 +42,3 @@ 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: ""
