2015-10-03 20:19:50 +00:00
|
|
|
---
|
2016-11-09 10:44:41 +00:00
|
|
|
- name: Flannel | Set Flannel etcd configuration
|
|
|
|
command: |-
|
|
|
|
{{ bin_dir }}/etcdctl --peers={{ etcd_access_addresses }} \
|
|
|
|
set /{{ cluster_name }}/network/config \
|
|
|
|
'{ "Network": "{{ kube_pods_subnet }}", "SubnetLen": {{ kube_network_node_prefix }}, "Backend": { "Type": "{{ flannel_backend_type }}" } }'
|
|
|
|
delegate_to: "{{groups['etcd'][0]}}"
|
|
|
|
run_once: true
|
2016-05-09 04:42:42 +00:00
|
|
|
|
2016-01-09 09:45:50 +00:00
|
|
|
- name: Flannel | Create flannel pod manifest
|
2015-10-03 20:19:50 +00:00
|
|
|
template:
|
2016-01-30 15:04:47 +00:00
|
|
|
src: flannel-pod.yml
|
2016-01-09 09:45:50 +00:00
|
|
|
dest: /etc/kubernetes/manifests/flannel-pod.manifest
|
|
|
|
notify: delete default docker bridge
|
|
|
|
|
|
|
|
- name: Flannel | Wait for flannel subnet.env file presence
|
|
|
|
wait_for:
|
|
|
|
path: /run/flannel/subnet.env
|
|
|
|
delay: 5
|
2016-02-19 17:48:53 +00:00
|
|
|
timeout: 600
|
2016-01-09 09:45:50 +00:00
|
|
|
|
2016-01-30 15:04:47 +00:00
|
|
|
- name: Flannel | Get flannel_subnet from subnet.env
|
2016-01-09 09:45:50 +00:00
|
|
|
shell: cat /run/flannel/subnet.env | awk -F'=' '$1 == "FLANNEL_SUBNET" {print $2}'
|
|
|
|
register: flannel_subnet_output
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
flannel_subnet: "{{ flannel_subnet_output.stdout }}"
|
|
|
|
|
2016-01-30 15:04:47 +00:00
|
|
|
- name: Flannel | Get flannel_mtu from subnet.env
|
2016-01-09 09:45:50 +00:00
|
|
|
shell: cat /run/flannel/subnet.env | awk -F'=' '$1 == "FLANNEL_MTU" {print $2}'
|
|
|
|
register: flannel_mtu_output
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
flannel_mtu: "{{ flannel_mtu_output.stdout }}"
|
2016-01-30 15:04:47 +00:00
|
|
|
|
2016-11-04 21:40:14 +00:00
|
|
|
- set_fact:
|
|
|
|
docker_options_file: >-
|
|
|
|
{%- if ansible_os_family == "Debian" -%}/etc/default/docker{%- elif ansible_os_family == "RedHat" -%}/etc/sysconfig/docker{%- endif -%}
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
docker_options_name: >-
|
|
|
|
{%- if ansible_os_family == "Debian" -%}DOCKER_OPTS{%- elif ansible_os_family == "RedHat" -%}other_args{%- endif -%}
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
docker_network_options: '"--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"'
|
|
|
|
|
|
|
|
- name: Flannel | Remove non-systemd docker daemon network options that don't match desired line
|
|
|
|
lineinfile:
|
|
|
|
dest: "{{ docker_options_file }}"
|
|
|
|
regexp: "^DOCKER_NETWORK_OPTIONS=(?!{{ docker_network_options|regex_escape() }})"
|
|
|
|
state: absent
|
|
|
|
when: ansible_service_mgr in ["sysvinit","upstart"]
|
|
|
|
|
|
|
|
- name: Flannel | Set non-systemd docker daemon network options
|
|
|
|
lineinfile:
|
|
|
|
dest: "{{ docker_options_file }}"
|
|
|
|
line: DOCKER_NETWORK_OPTIONS={{ docker_network_options }}
|
|
|
|
insertbefore: ^{{ docker_options_name }}=
|
2016-01-30 15:04:47 +00:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
notify:
|
|
|
|
- restart docker
|
2016-11-04 21:40:14 +00:00
|
|
|
when: ansible_service_mgr in ["sysvinit","upstart"]
|
2016-08-30 16:34:34 +00:00
|
|
|
|
2016-11-04 21:40:14 +00:00
|
|
|
- name: Flannel | Create docker network systemd drop-in
|
2016-08-30 16:17:41 +00:00
|
|
|
template:
|
2016-11-04 21:40:14 +00:00
|
|
|
src: flannel-options.conf.j2
|
2016-08-30 16:17:41 +00:00
|
|
|
dest: "/etc/systemd/system/docker.service.d/flannel-options.conf"
|
|
|
|
notify:
|
|
|
|
- restart docker
|
2016-11-04 21:40:14 +00:00
|
|
|
when: ansible_service_mgr == "systemd"
|
2016-02-19 17:48:53 +00:00
|
|
|
|
2016-11-04 21:40:14 +00:00
|
|
|
- meta: flush_handlers
|