2015-10-15 07:40:02 +00:00
|
|
|
[Unit]
|
2015-11-21 12:20:39 +00:00
|
|
|
Description=Calico per-node agent
|
|
|
|
Documentation=https://github.com/projectcalico/calico-docker
|
2016-11-09 10:31:12 +00:00
|
|
|
After=docker.service docker.socket
|
|
|
|
Wants=docker.socket
|
2015-10-15 07:40:02 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
User=root
|
|
|
|
PermissionsStartOnly=true
|
2016-11-07 20:37:12 +00:00
|
|
|
{% if legacy_calicoctl %}
|
2015-12-03 14:38:44 +00:00
|
|
|
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
2016-08-27 11:08:25 +00:00
|
|
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
2016-11-07 20:37:12 +00:00
|
|
|
{% else %}
|
2016-08-27 11:08:25 +00:00
|
|
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
2016-11-07 20:37:12 +00:00
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
2016-11-16 19:24:43 +00:00
|
|
|
ExecStart={{ bin_dir }}/calicoctl node run --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }} {% if calico_network_backend is defined %}--backend={{calico_network_backend }}{% endif %}
|
2016-11-07 20:37:12 +00:00
|
|
|
{% else %}
|
2016-11-16 19:24:43 +00:00
|
|
|
ExecStart={{ bin_dir }}/calicoctl node run --ip={{ip | default(ansible_default_ipv4.address) }} --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }} {% if calico_network_backend is defined %}--backend={{calico_network_backend }}{% endif %}
|
2016-11-07 20:37:12 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2016-11-23 06:48:12 +00:00
|
|
|
|
2015-11-21 12:20:39 +00:00
|
|
|
Restart=always
|
2016-08-08 10:06:32 +00:00
|
|
|
RestartSec=10s
|
2015-10-15 07:40:02 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|