e8a1c7a53f
Creating the unit using default settings early on and then changing it during network_plugin section leads to too many docker restarts and duplicated code. Reversed Wants= dependence on docker.service so it does not restart docker when reloading systemd Consolidated all docker restart handlers.
19 lines
657 B
Django/Jinja
19 lines
657 B
Django/Jinja
[Unit]
|
|
Description=Calico per-node agent
|
|
Documentation=https://github.com/projectcalico/calico-docker
|
|
After=docker.service docker.socket etcd-proxy.service
|
|
Wants=docker.socket etcd-proxy.service
|
|
|
|
[Service]
|
|
User=root
|
|
PermissionsStartOnly=true
|
|
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false
|
|
{% else %}
|
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false
|
|
{% endif %}
|
|
Restart=always
|
|
Restart=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|