Make etcdctl connect to localhost out of the box (#5643)

* Make etcdctl connect to localhost out of the box

* etcdctl envs: use admin-.pem instead of member-.pem
This commit is contained in:
Jakub Husák 2020-03-06 11:05:23 +01:00 committed by GitHub
parent 66408a87ee
commit 2beffe688a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,3 +42,9 @@ ETCD_PEER_CLIENT_CERT_AUTH={{ etcd_peer_client_auth }}
{% if host_architecture != "amd64" -%} {% if host_architecture != "amd64" -%}
ETCD_UNSUPPORTED_ARCH={{host_architecture}} ETCD_UNSUPPORTED_ARCH={{host_architecture}}
{%- endif %} {%- endif %}
# CLI settings
ETCDCTL_ENDPOINTS=https://127.0.0.1:2379
ETCDCTL_CA_FILE={{ etcd_cert_dir }}/ca.pem
ETCDCTL_KEY_FILE={{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem
ETCDCTL_CERT_FILE={{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem