main.yml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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: Remove old xPaas template files
  97. file:
  98. path: "{{ item }}"
  99. state: absent
  100. with_items:
  101. - "{{ xpaas_templates_base }}/sso70-basic.json"
  102. - name: Remove old xPaas templates from openshift namespace
  103. command: "{{ openshift.common.client_binary }} -n openshift delete templates/{{ item }}"
  104. with_items:
  105. - sso70-basic
  106. register: oex_delete_old_xpaas_templates
  107. failed_when: "'not found' not in oex_delete_old_xpaas_templates.stderr and oex_delete_old_xpaas_templates.rc != 0"
  108. changed_when: false
  109. - name: Import xPaas image streams
  110. command: >
  111. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_image_streams }}
  112. when: openshift_examples_load_xpaas | bool
  113. register: oex_import_xpaas_streams
  114. failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0"
  115. changed_when: false
  116. - name: Import xPaas templates
  117. command: >
  118. {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ xpaas_templates_base }}
  119. when: openshift_examples_load_xpaas | bool
  120. register: oex_import_xpaas_templates
  121. failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0"
  122. changed_when: false