main.yml 1.1 KB

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