template.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. # Tasks for ensuring the correct CFME templates are landed on the remote system
  3. ######################################################################
  4. # CFME App Template
  5. #
  6. # Note, this is different from the create_pvs.yml tasks in that the
  7. # application template does not require any jinja2 evaluation.
  8. #
  9. # TODO: Handle the case where the server template is updated in
  10. # openshift-ansible and the change needs to be landed on the managed
  11. # cluster.
  12. ######################################################################
  13. # STANDARD PODIFIED DATABASE TEMPLATE
  14. - when: openshift_cfme_app_template == 'miq-template'
  15. block:
  16. - name: Check if the CFME Server template has been created already
  17. oc_obj:
  18. namespace: "{{ openshift_cfme_project }}"
  19. state: list
  20. kind: template
  21. name: manageiq
  22. register: miq_server_check
  23. - name: Copy over CFME Server template
  24. copy:
  25. src: miq-template.yaml
  26. dest: "{{ template_dir }}/"
  27. when:
  28. - miq_server_check.results.results == [{}]
  29. - name: Ensure CFME Server Template is created
  30. oc_obj:
  31. namespace: "{{ openshift_cfme_project }}"
  32. name: manageiq
  33. state: present
  34. kind: template
  35. files:
  36. - "{{ template_dir }}/miq-template.yaml"
  37. when:
  38. - miq_server_check.results.results == [{}]
  39. ######################################################################
  40. # EXTERNAL DATABASE TEMPLATE
  41. - when: openshift_cfme_app_template == 'miq-template-ext-db'
  42. block:
  43. - name: Check if the CFME Ext-DB Server template has been created already
  44. oc_obj:
  45. namespace: "{{ openshift_cfme_project }}"
  46. state: list
  47. kind: template
  48. name: manageiq-ext-db
  49. register: miq_ext_db_server_check
  50. - name: Copy over CFME Ext-DB Server template
  51. copy:
  52. src: miq-template-ext-db.yaml
  53. dest: "{{ template_dir }}/"
  54. when:
  55. - miq_ext_db_server_check.results.results == [{}]
  56. - name: Ensure CFME Ext-DB Server Template is created
  57. oc_obj:
  58. namespace: "{{ openshift_cfme_project }}"
  59. name: manageiq-ext-db
  60. state: present
  61. kind: template
  62. files:
  63. - "{{ template_dir }}/miq-template-ext-db.yaml"
  64. when:
  65. - miq_ext_db_server_check.results.results == [{}]