2015-10-03 20:19:50 +00:00
|
|
|
---
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Install calicoctl bin
|
2015-10-03 20:19:50 +00:00
|
|
|
copy:
|
|
|
|
src={{ local_release_dir }}/calico/bin/calicoctl
|
|
|
|
dest={{ bin_dir }}
|
|
|
|
mode=u+x
|
|
|
|
notify: restart calico-node
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Create calicoctl symlink (needed by kubelet)
|
2015-10-03 20:19:50 +00:00
|
|
|
file: src=/usr/local/bin/calicoctl dest=/usr/bin/calicoctl state=link
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Write calico-node systemd init file
|
2015-10-03 20:19:50 +00:00
|
|
|
template: src=calico/calico-node.service.j2 dest=/etc/systemd/system/calico-node.service
|
|
|
|
notify:
|
|
|
|
- reload systemd
|
|
|
|
- restart calico-node
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Write network-environment
|
2015-10-03 20:19:50 +00:00
|
|
|
template: src=calico/network-environment.j2 dest=/etc/network-environment mode=u+x
|
|
|
|
notify:
|
|
|
|
- reload systemd
|
|
|
|
- restart calico-node
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Enable calico-node
|
2015-10-03 20:19:50 +00:00
|
|
|
service: name=calico-node enabled=yes state=started
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Configure calico-node remove default pool
|
2015-10-03 20:19:50 +00:00
|
|
|
shell: calicoctl pool remove 192.168.0.0/16
|
|
|
|
environment:
|
|
|
|
ETCD_AUTHORITY: "{{ groups['kube-master'][0] }}:4001"
|
|
|
|
run_once: true
|
|
|
|
|
2015-10-15 07:40:02 +00:00
|
|
|
- name: Calico | Configure calico-node desired pool
|
2015-10-03 20:19:50 +00:00
|
|
|
shell: calicoctl pool add {{ overlay_network_subnet }}
|
|
|
|
environment:
|
|
|
|
ETCD_AUTHORITY: "{{ groups['kube-master'][0] }}:4001"
|
|
|
|
run_once: true
|
2015-10-15 07:40:02 +00:00
|
|
|
|
|
|
|
- name: Calico | Disable node mesh
|
|
|
|
shell: calicoctl bgp node-mesh off
|
|
|
|
when: peer_with_router and inventory_hostname in groups['kube-node']
|
|
|
|
|
|
|
|
- name: Calico | Configure peering with router(s)
|
|
|
|
shell: calicoctl node bgp peer add {{ item.router_id }} as {{ item.as }}
|
|
|
|
with_items: peers
|
|
|
|
when: peer_with_router and inventory_hostname in groups['kube-node']
|