2015-10-04 04:19:50 +08:00
|
|
|
---
|
2016-01-30 23:04:47 +08:00
|
|
|
- name: Calico | Set docker daemon options
|
|
|
|
template:
|
|
|
|
src: docker
|
|
|
|
dest: "/etc/default/docker"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
notify:
|
|
|
|
- restart docker
|
2016-02-20 01:48:53 +08:00
|
|
|
when: ansible_os_family != "CoreOS"
|
2016-01-30 23:04:47 +08:00
|
|
|
|
|
|
|
- name: Calico | Write docker.service systemd file
|
|
|
|
template:
|
|
|
|
src: systemd-docker.service
|
|
|
|
dest: /lib/systemd/system/docker.service
|
|
|
|
notify: restart docker
|
2016-02-20 01:48:53 +08:00
|
|
|
when: ansible_service_mgr == "systemd" and ansible_os_family != "CoreOS"
|
2016-01-30 23:04:47 +08:00
|
|
|
|
|
|
|
- meta: flush_handlers
|
|
|
|
|
2015-10-15 15:40:02 +08:00
|
|
|
- name: Calico | Install calicoctl bin
|
2016-01-24 01:26:07 +08:00
|
|
|
command: rsync -piu "{{ local_release_dir }}/calico/bin/calicoctl" "{{ bin_dir }}/calicoctl"
|
|
|
|
register: calico_copy
|
2016-01-22 23:37:07 +08:00
|
|
|
changed_when: false
|
2015-10-04 04:19:50 +08:00
|
|
|
|
2016-01-30 23:04:47 +08:00
|
|
|
- name: Calico | Install calico cni bin
|
|
|
|
command: rsync -piu "{{ local_release_dir }}/calico/bin/calico" "/opt/cni/bin/calico"
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: Calico | Install calico-ipam cni bin
|
|
|
|
command: rsync -piu "{{ local_release_dir }}/calico/bin/calico" "/opt/cni/bin/calico-ipam"
|
|
|
|
changed_when: false
|
|
|
|
|
2016-01-04 21:58:27 +08:00
|
|
|
- name: Calico | install calicoctl
|
|
|
|
file: path={{ bin_dir }}/calicoctl mode=0755 state=file
|
|
|
|
|
2016-01-25 09:01:25 +08:00
|
|
|
- name: Calico | wait for etcd
|
|
|
|
wait_for:
|
2016-01-09 17:45:50 +08:00
|
|
|
port: 2379
|
|
|
|
when: inventory_hostname in groups['kube-master']
|
|
|
|
|
2015-12-20 23:51:14 +08:00
|
|
|
- name: Calico | Check if calico network pool has already been configured
|
|
|
|
uri:
|
|
|
|
url: "http://127.0.0.1:2379/v2/keys/calico/v1/ipam/v4/pool"
|
|
|
|
return_content: yes
|
|
|
|
status_code: 200,404
|
|
|
|
register: calico_conf
|
|
|
|
run_once: true
|
|
|
|
|
2016-02-21 19:42:23 +08:00
|
|
|
- name: Calico | Configure calico network pool
|
|
|
|
command: "{{ bin_dir }}/calicoctl pool add {{ kube_pods_subnet }}"
|
|
|
|
run_once: true
|
2016-03-24 00:27:06 +08:00
|
|
|
when: calico_conf.status == 404 and cloud_provider is not defined
|
2016-02-21 19:42:23 +08:00
|
|
|
and not nat_outgoing|default(false) or
|
|
|
|
(nat_outgoing|default(false) and peer_with_router|default(false))
|
|
|
|
|
2016-01-29 21:07:21 +08:00
|
|
|
- name: Calico | Configure calico network pool for cloud
|
2016-02-20 01:48:53 +08:00
|
|
|
command: "{{ bin_dir }}/calicoctl pool add {{ kube_pods_subnet }} --ipip --nat-outgoing"
|
2016-01-29 21:07:21 +08:00
|
|
|
run_once: true
|
2016-03-24 00:27:06 +08:00
|
|
|
when: calico_conf.status == 404 and cloud_provider is defined
|
2016-01-29 21:07:21 +08:00
|
|
|
|
2016-02-21 19:42:23 +08:00
|
|
|
- name: Calico | Configure calico network pool with nat outgoing
|
|
|
|
command: "{{ bin_dir}}/calicoctl pool add {{ kube_pods_subnet }} --nat-outgoing"
|
2015-12-11 18:42:25 +08:00
|
|
|
run_once: true
|
2016-03-24 00:27:06 +08:00
|
|
|
when: calico_conf.status == 404 and cloud_provider is not defined
|
2016-02-21 19:42:23 +08:00
|
|
|
and nat_outgoing|default(false) and not peer_with_router|default(false)
|
2015-12-20 23:51:14 +08:00
|
|
|
|
|
|
|
- name: Calico | Get calico configuration from etcd
|
|
|
|
uri:
|
|
|
|
url: "http://127.0.0.1:2379/v2/keys/calico/v1/ipam/v4/pool"
|
|
|
|
return_content: yes
|
|
|
|
register: calico_pools
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Calico | Check if calico pool is properly configured
|
|
|
|
fail:
|
|
|
|
msg: 'Only one network pool must be configured and it must be the subnet {{ kube_pods_subnet }}.
|
|
|
|
Please erase calico configuration and run the playbook again ("etcdctl rm --recursive /calico/v1/ipam/v4/pool")'
|
2016-01-04 21:58:27 +08:00
|
|
|
when: ( calico_pools.json['node']['nodes'] | length > 1 ) or
|
2015-12-20 23:51:14 +08:00
|
|
|
( not calico_pools.json['node']['nodes'][0]['key'] | search(".*{{ kube_pods_subnet | ipaddr('network') }}.*") )
|
|
|
|
run_once: true
|
2015-12-11 18:42:25 +08:00
|
|
|
|
2016-02-01 22:53:23 +08:00
|
|
|
- name: Calico | Write /etc/network-environment
|
2016-01-30 23:04:47 +08:00
|
|
|
template: src=network-environment.j2 dest=/etc/network-environment
|
2016-02-13 18:17:20 +08:00
|
|
|
when: ansible_service_mgr in ["sysvinit","upstart"]
|
2016-02-01 22:53:23 +08:00
|
|
|
|
2015-10-15 15:40:02 +08:00
|
|
|
- name: Calico | Write calico-node systemd init file
|
2016-01-30 23:04:47 +08:00
|
|
|
template: src=calico-node.service.j2 dest=/etc/systemd/system/calico-node.service
|
2016-02-13 18:17:20 +08:00
|
|
|
when: ansible_service_mgr == "systemd"
|
2016-01-26 04:09:42 +08:00
|
|
|
notify: restart calico-node
|
2016-01-04 21:24:29 +08:00
|
|
|
|
|
|
|
- name: Calico | Write calico-node initd script
|
2016-01-30 23:04:47 +08:00
|
|
|
template: src=deb-calico.initd.j2 dest=/etc/init.d/calico-node owner=root mode=0755
|
2016-02-13 18:17:20 +08:00
|
|
|
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "Debian"
|
2016-01-04 21:24:29 +08:00
|
|
|
notify: restart calico-node
|
2015-10-04 04:19:50 +08:00
|
|
|
|
2016-01-04 21:24:29 +08:00
|
|
|
- name: Calico | Write calico-node initd script
|
2016-01-30 23:04:47 +08:00
|
|
|
template: src=rh-calico.initd.j2 dest=/etc/init.d/calico-node owner=root mode=0755
|
2016-02-13 18:17:20 +08:00
|
|
|
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "RedHat"
|
2016-01-04 21:24:29 +08:00
|
|
|
notify: restart calico-node
|
2015-11-20 21:04:13 +08:00
|
|
|
|
2016-01-25 09:01:25 +08:00
|
|
|
- meta: flush_handlers
|
|
|
|
|
2015-10-15 15:40:02 +08:00
|
|
|
- name: Calico | Enable calico-node
|
2016-01-30 23:04:47 +08:00
|
|
|
service:
|
|
|
|
name: calico-node
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2016-01-09 17:45:50 +08:00
|
|
|
|
2016-01-24 01:26:07 +08:00
|
|
|
- name: Calico | Restart calico if binary changed
|
|
|
|
service:
|
|
|
|
name: calico-node
|
|
|
|
state: restarted
|
|
|
|
when: calico_copy.stdout_lines
|
|
|
|
|
2016-01-09 17:45:50 +08:00
|
|
|
- name: Calico | Disable node mesh
|
2016-02-20 01:48:53 +08:00
|
|
|
shell: "{{ bin_dir }}/calicoctl bgp node-mesh off"
|
2016-01-09 17:45:50 +08:00
|
|
|
environment:
|
2016-01-27 00:28:30 +08:00
|
|
|
ETCD_AUTHORITY: "127.0.0.1:2379"
|
2016-01-09 17:45:50 +08:00
|
|
|
when: peer_with_router|default(false) and inventory_hostname in groups['kube-node']
|
|
|
|
|
|
|
|
- name: Calico | Configure peering with router(s)
|
2016-02-20 01:48:53 +08:00
|
|
|
shell: "{{ bin_dir }}/calicoctl node bgp peer add {{ item.router_id }} as {{ item.as }}"
|
2016-01-09 17:45:50 +08:00
|
|
|
environment:
|
2016-01-27 00:28:30 +08:00
|
|
|
ETCD_AUTHORITY: "127.0.0.1:2379"
|
2016-01-09 17:45:50 +08:00
|
|
|
with_items: peers
|
|
|
|
when: peer_with_router|default(false) and inventory_hostname in groups['kube-node']
|