main.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. - name: Create local temp dir for OpenShift hosted templates copy
  3. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  4. register: copy_hosted_templates_mktemp
  5. run_once: True
  6. # AUDIT:changed_when: not set here because this task actually
  7. # creates something
  8. - name: Chmod local temp dir for OpenShift examples copy
  9. local_action: command chmod 777 "{{ copy_hosted_templates_mktemp.stdout }}"
  10. run_once: True
  11. - name: Create tar of OpenShift examples
  12. local_action: command tar -C "{{ role_path }}/files/{{ content_version }}/{{ hosted_deployment_type }}" -cvf "{{ copy_hosted_templates_mktemp.stdout }}/openshift-hosted-templates.tar" .
  13. args:
  14. # Disables the following warning:
  15. # Consider using unarchive module rather than running tar
  16. warn: no
  17. - name: Chmod local tar of OpenShift examples
  18. local_action: command chmod 744 "{{ copy_hosted_templates_mktemp.stdout }}/openshift-hosted-templates.tar"
  19. run_once: True
  20. - name: Create remote OpenShift hosted templates directory
  21. file:
  22. dest: "{{ hosted_base }}"
  23. state: directory
  24. mode: 0755
  25. - name: Unarchive the OpenShift hosted templates on the remote
  26. unarchive:
  27. src: "{{ copy_hosted_templates_mktemp.stdout }}/openshift-hosted-templates.tar"
  28. dest: "{{ hosted_base }}/"
  29. - name: Cleanup the OpenShift hosted templates temp dir
  30. local_action: file dest="{{ copy_hosted_templates_mktemp.stdout }}" state=absent
  31. - name: Modify registry paths if registry_url is not registry.redhat.io
  32. shell: >
  33. find {{ hosted_base }} -type f | xargs -n 1 sed -i 's|registry.redhat.io|{{ registry_host | quote }}|g'
  34. when: registry_host != '' and openshift_hosted_modify_imagestreams | default(openshift_examples_modify_imagestreams | default(False)) | bool
  35. - name: Create temp directory for kubeconfig
  36. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  37. register: mktemp
  38. changed_when: False
  39. - name: Record kubeconfig tmp dir
  40. set_fact:
  41. openshift_hosted_templates_kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
  42. - name: Copy the admin client config(s)
  43. command: >
  44. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ openshift_hosted_templates_kubeconfig }}
  45. changed_when: False
  46. - name: Create or update hosted templates
  47. command: >
  48. {{ openshift_client_binary }} {{ openshift_hosted_templates_import_command }}
  49. -f {{ hosted_base }}
  50. --config={{ openshift_hosted_templates_kubeconfig }}
  51. -n openshift
  52. register: oht_import_templates
  53. failed_when: "'already exists' not in oht_import_templates.stderr and oht_import_templates.rc != 0"
  54. changed_when: "'created' in oht_import_templates.stdout"
  55. - name: Delete temp directory
  56. file:
  57. name: "{{ mktemp.stdout }}"
  58. state: absent
  59. changed_when: False