main.yml 986 B

12345678910111213141516171819202122232425262728293031
  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. # TODO: Move into shared vars file
  10. - name: Load default node image
  11. set_fact:
  12. calico_node_image: "quay.io/calico/node:v2.6.7"
  13. when: calico_node_image is not defined
  14. - name: Prepull Images
  15. command: "docker pull {{ calico_node_image }}"
  16. - name: Apply node label
  17. delegate_to: "{{ groups.oo_first_master.0 }}"
  18. command: >
  19. {{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig label node {{ openshift.node.nodename | lower }} --overwrite projectcalico.org/ds-ready=true
  20. - name: Wait for node running
  21. uri:
  22. url: http://localhost:9099/readiness
  23. status_code: 204
  24. delay: 3
  25. retries: 10
  26. register: result
  27. until: result.status == 204