openshift_hosted_wait_for_pods.yml 990 B

1234567891011121314151617181920212223242526
  1. ---
  2. # This playbook waits for registry and router pods after both have been
  3. # created. It is intended to allow the tasks of deploying both to complete
  4. # before polling to save time.
  5. - name: Poll for hosted pod deployments
  6. hosts: oo_first_master
  7. tasks:
  8. - import_role:
  9. name: openshift_hosted
  10. tasks_from: wait_for_pod.yml
  11. vars:
  12. l_openshift_hosted_wait_for_pod: "{{ openshift_hosted_router_wait }}"
  13. l_openshift_hosted_wfp_items: "{{ openshift_hosted_routers }}"
  14. when:
  15. - openshift_hosted_manage_router | default(True) | bool
  16. - openshift_hosted_router_registryurl is defined
  17. - import_role:
  18. name: openshift_hosted
  19. tasks_from: wait_for_pod.yml
  20. vars:
  21. l_openshift_hosted_wait_for_pod: "{{ openshift_hosted_registry_wait }}"
  22. l_openshift_hosted_wfp_items: "{{ r_openshift_hosted_registry_list }}"
  23. when:
  24. - openshift_hosted_manage_registry | default(True) | bool
  25. - openshift_hosted_registry_registryurl is defined