main.yml 1.2 KB

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