c12s-kubespray/roles/network_plugin/calico/templates/calico-node.service.j2

20 lines
622 B
Plaintext
Raw Normal View History

[Unit]
Description=Calico per-node agent
Documentation=https://github.com/projectcalico/calico-docker
Requires=docker.service
2016-01-25 01:01:25 +00:00
After=docker.service etcd.service
[Service]
User=root
PermissionsStartOnly=true
2015-12-03 14:38:44 +00:00
{% 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