main.yml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. ---
  2. ######################################################################
  3. # Copying Examples
  4. #
  5. # We used to use the copy module to transfer the openshift examples to
  6. # the remote. Then it started taking more than a minute to transfer
  7. # the files. As noted in the module:
  8. #
  9. # "The 'copy' module recursively copy facility does not scale to
  10. # lots (>hundreds) of files."
  11. #
  12. # The `synchronize` module is suggested as an alternative, we can't
  13. # use it either due to changes introduced in Ansible 2.x.
  14. - name: Create local temp dir for OpenShift examples copy
  15. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  16. become: False
  17. register: copy_examples_mktemp
  18. run_once: True
  19. - name: Create tar of OpenShift examples
  20. local_action: command tar -C "{{ role_path }}/files/examples/{{ content_version }}/" -cvf "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar" .
  21. args:
  22. # Disables the following warning:
  23. # Consider using unarchive module rather than running tar
  24. warn: no
  25. become: False
  26. register: copy_examples_tar
  27. - name: Create the remote OpenShift examples directory
  28. file:
  29. dest: "{{ examples_base }}"
  30. state: directory
  31. mode: 0755
  32. - name: Unarchive the OpenShift examples on the remote
  33. unarchive:
  34. src: "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar"
  35. dest: "{{ examples_base }}/"
  36. - name: Cleanup the OpenShift Examples temp dir
  37. become: False
  38. local_action: file dest="{{ copy_examples_mktemp.stdout }}" state=absent
  39. # Done copying examples
  40. ######################################################################
  41. # Begin image streams
  42. - name: Modify registry paths if registry_url is not registry.access.redhat.com
  43. shell: >
  44. find {{ examples_base }} -type f | xargs -n 1 sed -i 's|registry.access.redhat.com|{{ registry_host | quote }}|g'
  45. when: registry_host != '' and openshift_examples_modify_imagestreams | default(False) | bool
  46. # RHEL and Centos image streams are mutually exclusive
  47. - name: Import RHEL streams
  48. command: >
  49. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ item }}
  50. when: openshift_examples_load_rhel | bool
  51. with_items:
  52. - "{{ rhel_image_streams }}"
  53. register: oex_import_rhel_streams
  54. failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0"
  55. changed_when: false
  56. - name: Import Centos Image streams
  57. command: >
  58. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ centos_image_streams }}
  59. when: openshift_examples_load_centos | bool
  60. register: oex_import_centos_streams
  61. failed_when: "'already exists' not in oex_import_centos_streams.stderr and oex_import_centos_streams.rc != 0"
  62. changed_when: false
  63. - name: Import db templates
  64. command: >
  65. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ db_templates_base }}
  66. when: openshift_examples_load_db_templates | bool
  67. register: oex_import_db_templates
  68. failed_when: "'already exists' not in oex_import_db_templates.stderr and oex_import_db_templates.rc != 0"
  69. changed_when: false
  70. - name: Remove defunct quickstart template files
  71. file:
  72. path: "{{ item }}"
  73. state: absent
  74. with_items:
  75. - "{{ quickstarts_base }}/nodejs.json"
  76. - "{{ quickstarts_base }}/cakephp.json"
  77. - "{{ quickstarts_base }}/dancer.json"
  78. - "{{ quickstarts_base }}/django.json"
  79. - name: Remove defunct quickstart templates from openshift namespace
  80. command: "{{ openshift.common.client_binary }} -n openshift delete templates/{{ item }}"
  81. with_items:
  82. - nodejs-example
  83. - cakephp-example
  84. - dancer-example
  85. - django-example
  86. register: oex_delete_defunct_quickstart_templates
  87. failed_when: "'not found' not in oex_delete_defunct_quickstart_templates.stderr and oex_delete_defunct_quickstart_templates.rc != 0"
  88. changed_when: false
  89. - name: Import quickstart-templates
  90. command: >
  91. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ quickstarts_base }}
  92. when: openshift_examples_load_quickstarts | bool
  93. register: oex_import_quickstarts
  94. failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0"
  95. changed_when: false
  96. - name: Import origin infrastructure-templates
  97. command: >
  98. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_origin_base }}
  99. when: openshift_examples_load_centos | bool
  100. register: oex_import_infrastructure
  101. failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
  102. changed_when: false
  103. - name: Import enterprise infrastructure-templates
  104. command: >
  105. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_enterprise_base }}
  106. when: openshift_examples_load_rhel | bool
  107. register: oex_import_infrastructure
  108. failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
  109. changed_when: false
  110. - name: Remove old xPaas template files
  111. file:
  112. path: "{{ item }}"
  113. state: absent
  114. with_items:
  115. - "{{ xpaas_templates_base }}/sso70-basic.json"
  116. - name: Remove old xPaas templates from openshift namespace
  117. command: "{{ openshift.common.client_binary }} -n openshift delete templates/{{ item }}"
  118. with_items:
  119. - sso70-basic
  120. register: oex_delete_old_xpaas_templates
  121. failed_when: "'not found' not in oex_delete_old_xpaas_templates.stderr and oex_delete_old_xpaas_templates.rc != 0"
  122. changed_when: false
  123. - name: Import xPaas image streams
  124. command: >
  125. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_image_streams }}
  126. when: openshift_examples_load_xpaas | bool
  127. register: oex_import_xpaas_streams
  128. failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0"
  129. changed_when: false
  130. - name: Import xPaas templates
  131. command: >
  132. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_templates_base }}
  133. when: openshift_examples_load_xpaas | bool
  134. register: oex_import_xpaas_templates
  135. failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0"
  136. changed_when: false