registry.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - include: config.yml
  3. - name: Initialize GlusterFS registry PV and PVC vars
  4. hosts: oo_first_master
  5. tags: hosted
  6. tasks:
  7. - set_fact:
  8. glusterfs_pv: []
  9. glusterfs_pvc: []
  10. - set_fact:
  11. glusterfs_pv:
  12. - name: "{{ openshift.hosted.registry.storage.volume.name }}-glusterfs-volume"
  13. capacity: "{{ openshift.hosted.registry.storage.volume.size }}"
  14. access_modes: "{{ openshift.hosted.registry.storage.access.modes }}"
  15. storage:
  16. glusterfs:
  17. endpoints: "{{ openshift.hosted.registry.storage.glusterfs.endpoints }}"
  18. path: "{{ openshift.hosted.registry.storage.glusterfs.path }}"
  19. readOnly: "{{ openshift.hosted.registry.storage.glusterfs.readOnly }}"
  20. glusterfs_pvc:
  21. - name: "{{ openshift.hosted.registry.storage.volume.name }}-glusterfs-claim"
  22. capacity: "{{ openshift.hosted.registry.storage.volume.size }}"
  23. access_modes: "{{ openshift.hosted.registry.storage.access.modes }}"
  24. when: openshift.hosted.registry.storage.glusterfs.swap
  25. - name: Create persistent volumes
  26. hosts: oo_first_master
  27. tags:
  28. - hosted
  29. vars:
  30. persistent_volumes: "{{ hostvars[groups.oo_first_master.0] | oo_persistent_volumes(groups, glusterfs_pv) }}"
  31. persistent_volume_claims: "{{ hostvars[groups.oo_first_master.0] | oo_persistent_volume_claims(glusterfs_pvc) }}"
  32. roles:
  33. - role: openshift_persistent_volumes
  34. when: persistent_volumes | union(glusterfs_pv) | length > 0 or persistent_volume_claims | union(glusterfs_pvc) | length > 0
  35. - name: Create Hosted Resources
  36. hosts: oo_first_master
  37. tags:
  38. - hosted
  39. pre_tasks:
  40. - set_fact:
  41. openshift_hosted_router_registryurl: "{{ hostvars[groups.oo_first_master.0].openshift.master.registry_url }}"
  42. openshift_hosted_registry_registryurl: "{{ hostvars[groups.oo_first_master.0].openshift.master.registry_url }}"
  43. when: "'master' in hostvars[groups.oo_first_master.0].openshift and 'registry_url' in hostvars[groups.oo_first_master.0].openshift.master"
  44. roles:
  45. - role: openshift_hosted