openshift_hosted.yml 898 B

123456789101112131415161718
  1. - name: Create persistent volumes
  2. hosts: oo_first_master
  3. vars:
  4. persistent_volumes: "{{ hostvars[groups.oo_first_master.0] | oo_persistent_volumes(groups) }}"
  5. persistent_volume_claims: "{{ hostvars[groups.oo_first_master.0] | oo_persistent_volume_claims }}"
  6. roles:
  7. - role: openshift_persistent_volumes
  8. when: persistent_volumes | length > 0 or persistent_volume_claims | length > 0
  9. - name: Create Hosted Resources
  10. hosts: oo_first_master
  11. pre_tasks:
  12. - set_fact:
  13. openshift_hosted_router_registryurl: "{{ hostvars[groups.oo_first_master.0].openshift.master.registry_url }}"
  14. openshift_hosted_registry_registryurl: "{{ hostvars[groups.oo_first_master.0].openshift.master.registry_url }}"
  15. when: "'master' in hostvars[groups.oo_first_master.0].openshift and 'registry_url' in hostvars[groups.oo_first_master.0].openshift.master"
  16. roles:
  17. - role: openshift_hosted