46c177b982
For consistancy with kubernetes services we should use the same hostname for nodes, which is 'ansible_hostname'. Also fixing missed 'kube-node' in templates, Calico is installed on 'k8s-cluster' roles, not only 'kube-node'.
19 lines
757 B
Django/Jinja
19 lines
757 B
Django/Jinja
[Unit]
|
|
Description=Calico per-node agent
|
|
Documentation=https://github.com/projectcalico/calico-docker
|
|
After=docker.service docker.socket
|
|
Wants=docker.socket
|
|
|
|
[Service]
|
|
User=root
|
|
PermissionsStartOnly=true
|
|
{% if inventory_hostname in groups['k8s-cluster'] and peer_with_router|default(false)%}
|
|
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 }}
|
|
{% else %}
|
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
|
{% endif %}
|
|
Restart=always
|
|
RestartSec=10s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|