main.yml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -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_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ item }}
  59. when: openshift_examples_load_centos | bool
  60. with_items:
  61. - "{{ centos_image_streams }}"
  62. register: oex_import_centos_streams
  63. failed_when: "'already exists' not in oex_import_centos_streams.stderr and oex_import_centos_streams.rc != 0"
  64. changed_when: false
  65. - name: Import db templates
  66. command: >
  67. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ db_templates_base }}
  68. when: openshift_examples_load_db_templates | bool
  69. register: oex_import_db_templates
  70. failed_when: "'already exists' not in oex_import_db_templates.stderr and oex_import_db_templates.rc != 0"
  71. changed_when: false
  72. - name: Remove defunct quickstart template files
  73. file:
  74. path: "{{ item }}"
  75. state: absent
  76. with_items:
  77. - "{{ quickstarts_base }}/nodejs.json"
  78. - "{{ quickstarts_base }}/cakephp.json"
  79. - "{{ quickstarts_base }}/dancer.json"
  80. - "{{ quickstarts_base }}/django.json"
  81. - name: Remove defunct quickstart templates from openshift namespace
  82. command: "{{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift delete templates/{{ item }}"
  83. with_items:
  84. - nodejs-example
  85. - cakephp-example
  86. - dancer-example
  87. - django-example
  88. register: oex_delete_defunct_quickstart_templates
  89. failed_when: "'not found' not in oex_delete_defunct_quickstart_templates.stderr and oex_delete_defunct_quickstart_templates.rc != 0"
  90. changed_when: false
  91. - name: Import quickstart-templates
  92. command: >
  93. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ quickstarts_base }}
  94. when: openshift_examples_load_quickstarts | bool
  95. register: oex_import_quickstarts
  96. failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0"
  97. changed_when: false
  98. - name: Remove old xPaas template files
  99. file:
  100. path: "{{ item }}"
  101. state: absent
  102. with_items:
  103. - "{{ xpaas_templates_base }}/sso70-basic.json"
  104. - name: Remove old xPaas templates from openshift namespace
  105. command: "{{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift delete templates/{{ item }}"
  106. with_items:
  107. - sso70-basic
  108. register: oex_delete_old_xpaas_templates
  109. failed_when: "'not found' not in oex_delete_old_xpaas_templates.stderr and oex_delete_old_xpaas_templates.rc != 0"
  110. changed_when: false
  111. - name: Import xPaas image streams
  112. command: >
  113. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ xpaas_image_streams }}
  114. when: openshift_examples_load_xpaas | bool
  115. register: oex_import_xpaas_streams
  116. failed_when: "'already exists' not in oex_import_xpaas_streams.stderr and oex_import_xpaas_streams.rc != 0"
  117. changed_when: false
  118. - name: Import xPaas templates
  119. command: >
  120. {{ openshift_client_binary }} {{ openshift_examples_import_command }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n openshift -f {{ xpaas_templates_base }}
  121. when: openshift_examples_load_xpaas | bool
  122. register: oex_import_xpaas_templates
  123. failed_when: "'already exists' not in oex_import_xpaas_templates.stderr and oex_import_xpaas_templates.rc != 0"
  124. changed_when: false