2018-08-17 14:25:35 +00:00
|
|
|
# Environment file for etcd {{ etcd_version }}
|
2017-03-23 16:56:30 +00: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 08:25:38 +00:00
|
|
|
ETCD_METRICS={{ etcd_metrics }}
|
2017-03-23 16:56:30 +00: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 08:39:38 +00:00
|
|
|
ETCD_AUTO_COMPACTION_RETENTION={{ etcd_compaction_retention }}
|
2018-03-26 14:25:51 +00:00
|
|
|
{% if etcd_snapshot_count is defined %}
|
|
|
|
ETCD_SNAPSHOT_COUNT={{ etcd_snapshot_count }}
|
|
|
|
{% endif %}
|
2018-08-04 11:56:25 +00:00
|
|
|
{% if etcd_quota_backend_bytes is defined %}
|
|
|
|
ETCD_QUOTA_BACKEND_BYTES={{ etcd_quota_backend_bytes }}
|
|
|
|
{% endif %}
|
2018-11-17 07:59:40 +00:00
|
|
|
{% if etcd_log_package_levels is defined %}
|
|
|
|
ETCD_LOG_PACKAGE_LEVELS={{ etcd_log_package_levels }}
|
|
|
|
{% endif %}
|
2017-03-23 16:56:30 +00: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 14:06:16 +00:00
|
|
|
ETCD_CLIENT_CERT_AUTH={{ etcd_secure_client | lower}}
|
|
|
|
|
2017-03-23 16:56:30 +00: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-11 18:07:43 +00:00
|
|
|
ETCD_PEER_CLIENT_CERT_AUTH={{ etcd_peer_client_auth }}
|
2018-04-18 17:16:42 +00:00
|
|
|
|
2018-05-01 07:42:00 +00:00
|
|
|
{% for key, value in etcd_extra_vars.items() %}
|
2018-04-18 17:16:42 +00:00
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
2018-08-21 15:53:23 +00:00
|
|
|
|
2018-08-23 15:06:00 +00:00
|
|
|
{% if host_architecture != "amd64" -%}
|
|
|
|
ETCD_UNSUPPORTED_ARCH={{host_architecture}}
|
2018-08-21 15:53:23 +00:00
|
|
|
{%- endif %}
|
2020-03-06 10:05:23 +00: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
|