2018-08-17 22:25:35 +08:00
|
|
|
# Environment file for etcd {{ etcd_version }}
|
2017-03-24 00:56:30 +08:00
|
|
|
ETCD_DATA_DIR={{ etcd_data_dir }}
|
|
|
|
ETCD_ADVERTISE_CLIENT_URLS={{ etcd_client_url }}
|
|
|
|
ETCD_INITIAL_ADVERTISE_PEER_URLS={{ etcd_peer_url }}
|
|
|
|
ETCD_INITIAL_CLUSTER_STATE={% if etcd_cluster_is_healthy.rc != 0 | bool %}new{% else %}existing{% endif %}
|
|
|
|
|
2017-07-24 16:25:38 +08:00
|
|
|
ETCD_METRICS={{ etcd_metrics }}
|
2017-03-24 00:56:30 +08:00
|
|
|
ETCD_LISTEN_CLIENT_URLS=https://{{ etcd_address }}:2379,https://127.0.0.1:2379
|
|
|
|
ETCD_ELECTION_TIMEOUT={{ etcd_election_timeout }}
|
|
|
|
ETCD_HEARTBEAT_INTERVAL={{ etcd_heartbeat_interval }}
|
|
|
|
ETCD_INITIAL_CLUSTER_TOKEN=k8s_etcd
|
|
|
|
ETCD_LISTEN_PEER_URLS=https://{{ etcd_address }}:2380
|
|
|
|
ETCD_NAME={{ etcd_member_name }}
|
|
|
|
ETCD_PROXY=off
|
|
|
|
ETCD_INITIAL_CLUSTER={{ etcd_peer_addresses }}
|
2017-06-14 16:39:38 +08:00
|
|
|
ETCD_AUTO_COMPACTION_RETENTION={{ etcd_compaction_retention }}
|
2018-03-26 22:25:51 +08:00
|
|
|
{% if etcd_snapshot_count is defined %}
|
|
|
|
ETCD_SNAPSHOT_COUNT={{ etcd_snapshot_count }}
|
|
|
|
{% endif %}
|
2018-08-04 19:56:25 +08:00
|
|
|
{% if etcd_quota_backend_bytes is defined %}
|
|
|
|
ETCD_QUOTA_BACKEND_BYTES={{ etcd_quota_backend_bytes }}
|
|
|
|
{% endif %}
|
2018-11-17 15:59:40 +08:00
|
|
|
{% if etcd_log_package_levels is defined %}
|
|
|
|
ETCD_LOG_PACKAGE_LEVELS={{ etcd_log_package_levels }}
|
|
|
|
{% endif %}
|
2017-03-24 00:56:30 +08:00
|
|
|
|
|
|
|
# TLS settings
|
|
|
|
ETCD_TRUSTED_CA_FILE={{ etcd_cert_dir }}/ca.pem
|
|
|
|
ETCD_CERT_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}.pem
|
|
|
|
ETCD_KEY_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}-key.pem
|
2017-11-07 22:06:16 +08:00
|
|
|
ETCD_CLIENT_CERT_AUTH={{ etcd_secure_client | lower}}
|
|
|
|
|
2017-03-24 00:56:30 +08:00
|
|
|
ETCD_PEER_TRUSTED_CA_FILE={{ etcd_cert_dir }}/ca.pem
|
|
|
|
ETCD_PEER_CERT_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}.pem
|
|
|
|
ETCD_PEER_KEY_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}-key.pem
|
2018-01-12 02:07:43 +08:00
|
|
|
ETCD_PEER_CLIENT_CERT_AUTH={{ etcd_peer_client_auth }}
|
2018-04-19 01:16:42 +08:00
|
|
|
|
2018-05-01 15:42:00 +08:00
|
|
|
{% for key, value in etcd_extra_vars.items() %}
|
2018-04-19 01:16:42 +08:00
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
2018-08-21 23:53:23 +08:00
|
|
|
|
2018-08-23 23:06:00 +08:00
|
|
|
{% if host_architecture != "amd64" -%}
|
|
|
|
ETCD_UNSUPPORTED_ARCH={{host_architecture}}
|
2018-08-21 23:53:23 +08:00
|
|
|
{%- endif %}
|
2020-03-06 18:05:23 +08:00
|
|
|
|
|
|
|
# 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
|