main.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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
  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.common.is_containerized | 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. - name: Set node schedulability
  36. oc_adm_manage_node:
  37. node: "{{ openshift.node.nodename | lower }}"
  38. schedulable: "{{ 'true' if l_openshift_manage_schedulable | bool else 'false' }}"
  39. retries: 10
  40. delay: 5
  41. register: node_schedulable
  42. until: node_schedulable|succeeded
  43. when: "'nodename' in openshift.node"
  44. delegate_to: "{{ openshift_master_host }}"
  45. - name: Label nodes
  46. oc_label:
  47. name: "{{ openshift.node.nodename }}"
  48. kind: node
  49. state: add
  50. labels: "{{ openshift.node.labels | oo_dict_to_list_of_dict }}"
  51. namespace: default
  52. when:
  53. - "'nodename' in openshift.node"
  54. - "'labels' in openshift.node"
  55. - openshift.node.labels != {}
  56. delegate_to: "{{ openshift_master_host }}"