You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
477 B

  1. ---
  2. etcd_bin_dir: "{{ local_release_dir }}/etcd/etcd-{{ etcd_version }}-linux-amd64/"
  3. etcd_config_dir: /etc/ssl/etcd
  4. etcd_cert_dir: "{{ etcd_config_dir }}/ssl"
  5. etcd_cert_group: root
  6. etcd_script_dir: "{{ bin_dir }}/etcd-scripts"
  7. etcd_heartbeat_interval: "250"
  8. etcd_election_timeout: "5000"
  9. # Limits
  10. etcd_memory_limit: 512M
  11. # Uncomment to set CPU share for etcd
  12. #etcd_cpu_limit: 300m
  13. etcd_node_cert_hosts: "{{ groups['k8s-cluster'] | union(groups.get('calico-rr', [])) }}"