main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Check for legacy service
  3. stat:
  4. path: /lib/systemd/system/calico.service
  5. register: sym
  6. - fail:
  7. msg: You are running a systemd based installation of Calico. Please run the calico upgrade playbook to upgrade to a self-hosted installation.
  8. when: sym.stat.exists
  9. - name: Configure NetworkManager to ignore Calico interfaces
  10. copy:
  11. src: files/calico.conf
  12. dest: /etc/NetworkManager/conf.d/
  13. when: using_network_manager | default(true) | bool
  14. register: nm
  15. - name: restart NetworkManager
  16. systemd:
  17. name: NetworkManager
  18. state: restarted
  19. when: nm.changed
  20. # TODO: Move into shared vars file
  21. - name: Load default node image
  22. set_fact:
  23. calico_node_image: "quay.io/calico/node:v2.6.7"
  24. when: calico_node_image is not defined
  25. - name: Prepull Images
  26. command: "docker pull {{ calico_node_image }}"
  27. - name: Apply node label
  28. delegate_to: "{{ groups.oo_first_master.0 }}"
  29. command: >
  30. {{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig label node {{ openshift.node.nodename | lower }} --overwrite projectcalico.org/ds-ready=true
  31. - name: Wait for node running
  32. uri:
  33. url: http://localhost:9099/readiness
  34. status_code: 204
  35. delay: 3
  36. retries: 10
  37. register: result
  38. until: result.status == 204