main.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. ---
  2. - name: Copy openshift examples
  3. copy:
  4. src: "examples/{{ content_version }}/"
  5. dest: "{{ examples_base }}/"
  6. - name: Modify registry paths if registry_url is not registry.access.redhat.com
  7. shell: >
  8. find {{ examples_base }} -type f | xargs -n 1 sed -i 's|registry.access.redhat.com|{{ registry_host | quote }}|g'
  9. when: registry_host != '' and openshift_examples_modify_imagestreams | default(False) | bool
  10. # RHEL and Centos image streams are mutually exclusive
  11. - name: Import RHEL streams
  12. command: >
  13. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ rhel_image_streams }}
  14. when: openshift_examples_load_rhel | bool
  15. register: oex_import_rhel_streams
  16. failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0"
  17. changed_when: false
  18. - name: Import Centos Image streams
  19. command: >
  20. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ centos_image_streams }}
  21. when: openshift_examples_load_centos | bool
  22. register: oex_import_centos_streams
  23. failed_when: "'already exists' not in oex_import_centos_streams.stderr and oex_import_centos_streams.rc != 0"
  24. changed_when: false
  25. - name: Import db templates
  26. command: >
  27. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ db_templates_base }}
  28. when: openshift_examples_load_db_templates | bool
  29. register: oex_import_db_templates
  30. failed_when: "'already exists' not in oex_import_db_templates.stderr and oex_import_db_templates.rc != 0"
  31. changed_when: false
  32. - name: Import quickstart-templates
  33. command: >
  34. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ quickstarts_base }}
  35. when: openshift_examples_load_quickstarts | bool
  36. register: oex_import_quickstarts
  37. failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0"
  38. changed_when: false
  39. - name: Import origin infrastructure-templates
  40. command: >
  41. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_origin_base }}
  42. when: openshift_examples_load_centos | bool
  43. register: oex_import_infrastructure
  44. failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
  45. changed_when: false
  46. - name: Import enterprise infrastructure-templates
  47. command: >
  48. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_enterprise_base }}
  49. when: openshift_examples_load_rhel | bool
  50. register: oex_import_infrastructure
  51. failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
  52. changed_when: false
  53. - name: Import xPaas image streams
  54. command: >
  55. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_image_streams }}
  56. when: openshift_examples_load_xpaas | bool
  57. register: oex_import_xpaas_streams
  58. failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0"
  59. changed_when: false
  60. - name: Import xPaas templates
  61. command: >
  62. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_templates_base }}
  63. when: openshift_examples_load_xpaas | bool
  64. register: oex_import_xpaas_templates
  65. failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0"
  66. changed_when: false