main.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Install flannel
  3. become: yes
  4. action: "{{ ansible_pkg_mgr }} name=flannel state=present"
  5. when: not openshift.common.is_containerized | bool
  6. - name: Set flannel etcd url
  7. become: yes
  8. lineinfile:
  9. dest: /etc/sysconfig/flanneld
  10. backrefs: yes
  11. regexp: "^(FLANNEL_ETCD=)"
  12. line: '\1{{ etcd_hosts|join(",") }}'
  13. - name: Set flannel etcd key
  14. become: yes
  15. lineinfile:
  16. dest: /etc/sysconfig/flanneld
  17. backrefs: yes
  18. regexp: "^(FLANNEL_ETCD_KEY=)"
  19. line: '\1{{ flannel_etcd_key }}'
  20. - name: Set flannel options
  21. become: yes
  22. lineinfile:
  23. dest: /etc/sysconfig/flanneld
  24. backrefs: yes
  25. regexp: "^#?(FLANNEL_OPTIONS=)"
  26. line: '\1--iface {{ flannel_interface }} --etcd-cafile={{ etcd_peer_ca_file }} --etcd-keyfile={{ etcd_peer_key_file }} --etcd-certfile={{ etcd_peer_cert_file }}'
  27. - name: Enable flanneld
  28. become: yes
  29. service:
  30. name: flanneld
  31. state: started
  32. enabled: yes
  33. register: start_result
  34. - name: Remove docker bridge ip
  35. become: yes
  36. shell: ip a del `ip a show docker0 | grep "inet[[:space:]]" | awk '{print $2}'` dev docker0
  37. notify:
  38. - restart docker
  39. - restart node