main.yml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. register: copy_examples_mktemp
  17. run_once: True
  18. - name: Chmod local temp dir for OpenShift examples copy
  19. local_action: command chmod 777 "{{ copy_examples_mktemp.stdout }}"
  20. run_once: True
  21. - name: Create tar of OpenShift examples
  22. local_action: command tar -C "{{ role_path }}/files/examples/{{ content_version }}/" -cvf "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar" .
  23. args:
  24. # Disables the following warning:
  25. # Consider using unarchive module rather than running tar
  26. warn: no
  27. - name: Chmod local temp dir for OpenShift examples copy
  28. local_action: command chmod 744 "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar"
  29. run_once: True
  30. - name: Create the remote OpenShift examples directory
  31. file:
  32. dest: "{{ examples_base }}"
  33. state: directory
  34. mode: 0755
  35. - name: Unarchive the OpenShift examples on the remote
  36. unarchive:
  37. src: "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar"
  38. dest: "{{ examples_base }}/"
  39. - name: Cleanup the OpenShift Examples temp dir
  40. local_action: file dest="{{ copy_examples_mktemp.stdout }}" state=absent
  41. # Done copying examples
  42. ######################################################################
  43. # Begin image streams
  44. - name: Modify registry paths if registry_url is not registry.access.redhat.com
  45. shell: >
  46. find {{ examples_base }} -type f | xargs -n 1 sed -i 's|registry.access.redhat.com|{{ registry_host | quote }}|g'
  47. when: registry_host != '' and openshift_examples_modify_imagestreams | default(False) | bool
  48. # RHEL and Centos image streams are mutually exclusive
  49. - name: Import RHEL streams
  50. command: >
  51. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ item }}
  52. when: openshift_examples_load_rhel | bool
  53. with_items:
  54. - "{{ rhel_image_streams }}"
  55. register: oex_import_rhel_streams
  56. failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0"
  57. changed_when: false
  58. - name: Import Centos Image streams
  59. command: >
  60. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ item }}
  61. when: openshift_examples_load_centos | bool
  62. with_items:
  63. - "{{ centos_image_streams }}"
  64. register: oex_import_centos_streams
  65. failed_when: "'already exists' not in oex_import_centos_streams.stderr and oex_import_centos_streams.rc != 0"
  66. changed_when: false
  67. - name: Import db templates
  68. command: >
  69. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ db_templates_base }}
  70. when: openshift_examples_load_db_templates | bool
  71. register: oex_import_db_templates
  72. failed_when: "'already exists' not in oex_import_db_templates.stderr and oex_import_db_templates.rc != 0"
  73. changed_when: false
  74. - name: Remove defunct quickstart template files
  75. file:
  76. path: "{{ item }}"
  77. state: absent
  78. with_items:
  79. - "{{ quickstarts_base }}/nodejs.json"
  80. - "{{ quickstarts_base }}/cakephp.json"
  81. - "{{ quickstarts_base }}/dancer.json"
  82. - "{{ quickstarts_base }}/django.json"
  83. - name: Remove defunct quickstart templates from openshift namespace
  84. command: "{{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift delete templates/{{ item }}"
  85. with_items:
  86. - nodejs-example
  87. - cakephp-example
  88. - dancer-example
  89. - django-example
  90. register: oex_delete_defunct_quickstart_templates
  91. failed_when: "'not found' not in oex_delete_defunct_quickstart_templates.stderr and oex_delete_defunct_quickstart_templates.rc != 0"
  92. changed_when: false
  93. - name: Import quickstart-templates
  94. command: >
  95. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ quickstarts_base }}
  96. when: openshift_examples_load_quickstarts | bool
  97. register: oex_import_quickstarts
  98. failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0"
  99. changed_when: false
  100. - name: Remove old xPaas template files
  101. file:
  102. path: "{{ item }}"
  103. state: absent
  104. with_items:
  105. - "{{ xpaas_templates_base }}/sso70-basic.json"
  106. - name: Remove old xPaas templates from openshift namespace
  107. command: "{{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift delete templates/{{ item }}"
  108. with_items:
  109. - sso70-basic
  110. register: oex_delete_old_xpaas_templates
  111. failed_when: "'not found' not in oex_delete_old_xpaas_templates.stderr and oex_delete_old_xpaas_templates.rc != 0"
  112. changed_when: false
  113. - name: Import xPaas image streams
  114. command: >
  115. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ xpaas_image_streams }}
  116. when: openshift_examples_load_xpaas | bool
  117. register: oex_import_xpaas_streams
  118. failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0"
  119. changed_when: false
  120. - name: Import xPaas templates
  121. command: >
  122. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ xpaas_templates_base }}
  123. when: openshift_examples_load_xpaas | bool
  124. register: oex_import_xpaas_templates
  125. failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0"
  126. changed_when: false