main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. # Necessary because when you're on a node that's also a master the master will be
  3. # restarted after the node restarts docker and it will take up to 60 seconds for
  4. # systemd to start the master again
  5. - name: Wait for master API to become available before proceeding
  6. # Using curl here since the uri module requires python-httplib2 and
  7. # wait_for port doesn't provide health information.
  8. command: >
  9. curl --silent --tlsv1.2 --max-time 2
  10. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  11. {{ openshift_node_master_api_url }}/healthz/ready
  12. args:
  13. # Disables the following warning:
  14. # Consider using get_url or uri module rather than running curl
  15. warn: no
  16. register: api_available_output
  17. until: api_available_output.stdout == 'ok'
  18. retries: 120
  19. delay: 1
  20. changed_when: false
  21. when: openshift_is_atomic | bool
  22. delegate_to: "{{ openshift_master_host }}"
  23. run_once: true
  24. - name: Wait for Node Registration
  25. oc_obj:
  26. name: "{{ openshift.node.nodename }}"
  27. kind: node
  28. state: list
  29. register: get_node
  30. until: "'metadata' in get_node.results.results[0]"
  31. retries: 50
  32. delay: 5
  33. when: "'nodename' in openshift.node"
  34. delegate_to: "{{ openshift_master_host }}"
  35. - include_tasks: config.yml
  36. - include_tasks: set_default_node_role.yml