Browse Source

Only limit etcd memory on small hosts (#1860)

Also disable oom killer on etcd
pull/1869/head
Matthew Mosesohn 7 years ago
committed by GitHub
parent
commit
acb63a57fa
2 changed files with 3 additions and 1 deletions
  1. 3
      roles/etcd/defaults/main.yml
  2. 1
      roles/etcd/templates/etcd.j2

3
roles/etcd/defaults/main.yml

@ -17,7 +17,8 @@ etcd_election_timeout: "5000"
etcd_metrics: "basic"
# Limits
etcd_memory_limit: 512M
# Limit memory only if <4GB memory on host. 0=unlimited
etcd_memory_limit: "{% if ansible_memtotal_mb < 4096 %}512M{% else %}0{% endif %}"
# Uncomment to set CPU share for etcd
# etcd_cpu_limit: 300m

1
roles/etcd/templates/etcd.j2

@ -9,6 +9,7 @@
{% if etcd_memory_limit is defined %}
--memory={{ etcd_memory_limit|regex_replace('Mi', 'M') }} \
{% endif %}
--oom-kill-disable \
{% if etcd_cpu_limit is defined %}
--cpu-shares={{ etcd_cpu_limit|regex_replace('m', '') }} \
{% endif %}

Loading…
Cancel
Save