a56d9de502
* Add restart for weave service unit * Reuse docker_bin_dir everythere * Limit systemd managed docker containers by CPU/RAM. Do not configure native systemd limits due to the lack of consensus in the kernel community requires out-of-tree kernel patches. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
7 lines
552 B
Django/Jinja
7 lines
552 B
Django/Jinja
WEAVE_DOCKER_ARGS="--memory={{ weave_memory_limit|regex_replace('Mi', 'M') }} --cpu-shares={{ weave_cpu_limit|regex_replace('m', '') }}"
|
|
WEAVE_PEERS="{% for host in groups['k8s-cluster'] %}{{ hostvars[host]['access_ip'] | default(hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address'])) }}{% if not loop.last %} {% endif %}{% endfor %}"
|
|
WEAVEPROXY_ARGS="--rewrite-inspect --without-dns"
|
|
WEAVE_SUBNET="--ipalloc-range {{ kube_pods_subnet }}"
|
|
{% if weave_password is defined %}
|
|
WEAVE_PASSWORD="{{ weave_password }}"
|
|
{% endif %}
|