2016-01-19 22:23:19 +08:00
|
|
|
---
|
2017-03-04 04:30:37 +08:00
|
|
|
# Set to false to only do certificate management
|
|
|
|
etcd_cluster_setup: true
|
2018-04-02 00:58:08 +08:00
|
|
|
etcd_events_cluster_setup: false
|
2017-03-04 04:30:37 +08:00
|
|
|
|
2018-06-18 21:19:12 +08:00
|
|
|
# Set to true to separate k8s events to a different etcd cluster
|
|
|
|
etcd_events_cluster_enabled: false
|
|
|
|
|
2017-06-27 21:12:34 +08:00
|
|
|
etcd_backup_prefix: "/var/backups"
|
2017-02-24 22:58:54 +08:00
|
|
|
etcd_data_dir: "/var/lib/etcd"
|
2020-07-22 14:58:05 +08:00
|
|
|
|
2020-10-23 22:09:57 +08:00
|
|
|
# Number of etcd backups to retain. Set to a value < 0 to retain all backups
|
|
|
|
etcd_backup_retention_count: -1
|
2016-11-09 18:44:41 +08:00
|
|
|
|
2021-02-09 17:53:22 +08:00
|
|
|
force_etcd_cert_refresh: true
|
2016-11-09 18:44:41 +08:00
|
|
|
etcd_config_dir: /etc/ssl/etcd
|
|
|
|
etcd_cert_dir: "{{ etcd_config_dir }}/ssl"
|
2020-12-09 16:48:49 +08:00
|
|
|
etcd_cert_dir_mode: "0700"
|
2017-02-06 20:58:54 +08:00
|
|
|
etcd_cert_group: root
|
2018-01-09 19:37:34 +08:00
|
|
|
# Note: This does not set up DNS entries. It simply adds the following DNS
|
|
|
|
# entries to the certificate
|
|
|
|
etcd_cert_alt_names:
|
2018-03-30 19:29:13 +08:00
|
|
|
- "etcd.kube-system.svc.{{ dns_domain }}"
|
|
|
|
- "etcd.kube-system.svc"
|
|
|
|
- "etcd.kube-system"
|
2018-01-09 19:37:34 +08:00
|
|
|
- "etcd"
|
2018-08-31 20:34:13 +08:00
|
|
|
etcd_cert_alt_ips: []
|
2016-11-09 18:44:41 +08:00
|
|
|
|
|
|
|
etcd_script_dir: "{{ bin_dir }}/etcd-scripts"
|
2016-12-23 22:44:44 +08:00
|
|
|
|
2017-02-07 22:46:02 +08:00
|
|
|
etcd_heartbeat_interval: "250"
|
|
|
|
etcd_election_timeout: "5000"
|
|
|
|
|
2018-03-28 22:30:00 +08:00
|
|
|
# etcd_snapshot_count: "10000"
|
2018-03-26 22:25:51 +08:00
|
|
|
|
2017-07-24 16:25:38 +08:00
|
|
|
etcd_metrics: "basic"
|
|
|
|
|
2021-11-18 15:53:01 +08:00
|
|
|
# Define in inventory to set a separate port for etcd to expose metrics on
|
2020-05-11 03:21:51 +08:00
|
|
|
# etcd_metrics_port: 2381
|
|
|
|
|
2018-04-19 01:16:42 +08:00
|
|
|
## A dictionary of extra environment variables to add to etcd.env, formatted like:
|
|
|
|
## etcd_extra_vars:
|
|
|
|
## ETCD_VAR1: "value1"
|
|
|
|
## ETCD_VAR2: "value2"
|
|
|
|
etcd_extra_vars: {}
|
|
|
|
|
2016-12-23 22:44:44 +08:00
|
|
|
# Limits
|
2017-10-25 17:25:15 +08:00
|
|
|
# Limit memory only if <4GB memory on host. 0=unlimited
|
|
|
|
etcd_memory_limit: "{% if ansible_memtotal_mb < 4096 %}512M{% else %}0{% endif %}"
|
2017-02-07 22:46:02 +08:00
|
|
|
|
2020-09-21 20:42:31 +08:00
|
|
|
# etcd_quota_backend_bytes: "2147483648"
|
2018-08-04 19:56:25 +08:00
|
|
|
|
2017-02-07 22:46:02 +08:00
|
|
|
# Uncomment to set CPU share for etcd
|
2017-08-24 17:09:52 +08:00
|
|
|
# etcd_cpu_limit: 300m
|
2017-02-09 05:41:36 +08:00
|
|
|
|
2017-09-25 19:20:24 +08:00
|
|
|
etcd_blkio_weight: 1000
|
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
etcd_node_cert_hosts: "{{ groups['k8s_cluster'] | union(groups.get('calico_rr', [])) }}"
|
2017-06-14 16:39:38 +08:00
|
|
|
|
2017-08-20 18:55:48 +08:00
|
|
|
etcd_compaction_retention: "8"
|
2017-08-30 21:03:22 +08:00
|
|
|
|
2017-11-07 22:06:16 +08:00
|
|
|
# Force clients like etcdctl to use TLS certs (different than peer security)
|
|
|
|
etcd_secure_client: true
|
2018-01-12 02:07:43 +08:00
|
|
|
|
|
|
|
# Enable peer client cert authentication
|
|
|
|
etcd_peer_client_auth: true
|
2020-02-11 17:38:01 +08:00
|
|
|
|
2021-03-19 07:48:36 +08:00
|
|
|
# Maximum number of snapshot files to retain (0 is unlimited)
|
|
|
|
# etcd_max_snapshots: 5
|
|
|
|
|
|
|
|
# Maximum number of wal files to retain (0 is unlimited)
|
|
|
|
# etcd_max_wals: 5
|
|
|
|
|
2020-02-11 17:38:01 +08:00
|
|
|
# Number of loop retries
|
|
|
|
etcd_retries: 4
|
2020-12-08 10:13:10 +08:00
|
|
|
|
|
|
|
## Support tls cipher suites.
|
|
|
|
# etcd_tls_cipher_suites: {}
|
|
|
|
# - TLS_RSA_WITH_RC4_128_SHA
|
|
|
|
# - TLS_RSA_WITH_3DES_EDE_CBC_SHA
|
|
|
|
# - TLS_RSA_WITH_AES_128_CBC_SHA
|
|
|
|
# - TLS_RSA_WITH_AES_256_CBC_SHA
|
|
|
|
# - TLS_RSA_WITH_AES_128_CBC_SHA256
|
|
|
|
# - TLS_RSA_WITH_AES_128_GCM_SHA256
|
|
|
|
# - TLS_RSA_WITH_AES_256_GCM_SHA384
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
|
|
|
|
# - TLS_ECDHE_RSA_WITH_RC4_128_SHA
|
|
|
|
# - TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
|
|
|
|
# - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
|
|
|
|
# - TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
|
|
|
|
# - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
|
|
|
|
# - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
|
|
|
|
# - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
|
|
|
|
# - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
|
|
|
|
# - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
|
|
|
|
# - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
|