template.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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_nfs_pvs.yml tasks in that
  7. # the application template does not require any jinja2 evaluation.
  8. #
  9. # TODO: Handle the case where the server or PV templates are updated
  10. # in openshift-ansible and the change needs to be landed on the
  11. # managed cluster.
  12. ######################################################################
  13. # STANDARD PODIFIED DATABASE TEMPLATE
  14. - when: openshift_cfme_app_template in ['miq-template', 'cfme-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: "{{ openshift_cfme_flavor }}"
  22. register: miq_server_check
  23. - when: miq_server_check.results.results == [{}]
  24. block:
  25. - name: Copy over CFME Server template
  26. copy:
  27. src: "templates/{{ openshift_cfme_flavor }}/{{ openshift_cfme_flavor_short }}-template.yaml"
  28. dest: "{{ template_dir }}/"
  29. - name: Ensure CFME Server Template is created
  30. oc_obj:
  31. namespace: "{{ openshift_cfme_project }}"
  32. name: "{{ openshift_cfme_flavor }}"
  33. state: present
  34. kind: template
  35. files:
  36. - "{{ template_dir }}/{{ openshift_cfme_flavor_short }}-template.yaml"
  37. ######################################################################
  38. # EXTERNAL DATABASE TEMPLATE
  39. - when: openshift_cfme_app_template in ['miq-template-ext-db', 'cfme-template']
  40. block:
  41. - name: Check if the CFME Ext-DB Server template has been created already
  42. oc_obj:
  43. namespace: "{{ openshift_cfme_project }}"
  44. state: list
  45. kind: template
  46. name: "{{ openshift_cfme_flavor }}-ext-db"
  47. register: miq_ext_db_server_check
  48. - when: miq_ext_db_server_check.results.results == [{}]
  49. block:
  50. - name: Copy over CFME Ext-DB Server template
  51. copy:
  52. src: "templates/{{ openshift_cfme_flavor }}/{{openshift_cfme_flavor_short}}-template-ext-db.yaml"
  53. dest: "{{ template_dir }}/"
  54. - name: Ensure CFME Ext-DB Server Template is created
  55. oc_obj:
  56. namespace: "{{ openshift_cfme_project }}"
  57. name: "{{ openshift_cfme_flavor }}-ext-db"
  58. state: present
  59. kind: template
  60. files:
  61. - "{{ template_dir }}/{{ openshift_cfme_flavor_short }}-template-ext-db.yaml"
  62. # End app template creation.
  63. ######################################################################
  64. ######################################################################
  65. # Begin conditional PV template creations
  66. # Required for the application server
  67. - name: Check if the CFME App PV template has been created already
  68. oc_obj:
  69. namespace: "{{ openshift_cfme_project }}"
  70. state: list
  71. kind: template
  72. name: "{{ openshift_cfme_flavor }}-app-pv"
  73. register: miq_app_pv_check
  74. - when: miq_app_pv_check.results.results == [{}]
  75. block:
  76. - name: Copy over CFME App PV template
  77. copy:
  78. src: "templates/{{ openshift_cfme_flavor }}/{{ openshift_cfme_flavor_short }}-pv-server-example.yaml"
  79. dest: "{{ template_dir }}/"
  80. - name: Ensure CFME App PV Template is created
  81. oc_obj:
  82. namespace: "{{ openshift_cfme_project }}"
  83. name: "{{ openshift_cfme_flavor }}-app-pv"
  84. state: present
  85. kind: template
  86. files:
  87. - "{{ template_dir }}/{{ openshift_cfme_flavor_short }}-pv-server-example.yaml"
  88. #---------------------------------------------------------------------
  89. # Required for database if the installation is fully podified
  90. - when: openshift_cfme_app_template in ['miq-template', 'cfme-template']
  91. block:
  92. - name: Check if the CFME DB PV template has been created already
  93. oc_obj:
  94. namespace: "{{ openshift_cfme_project }}"
  95. state: list
  96. kind: template
  97. name: "{{ openshift_cfme_flavor }}-db-pv"
  98. register: miq_db_pv_check
  99. - when: miq_db_pv_check.results.results == [{}]
  100. block:
  101. - name: Copy over CFME DB PV template
  102. copy:
  103. src: "templates/{{ openshift_cfme_flavor }}/{{ openshift_cfme_flavor_short }}-pv-db-example.yaml"
  104. dest: "{{ template_dir }}/"
  105. - name: Ensure CFME DB PV Template is created
  106. oc_obj:
  107. namespace: "{{ openshift_cfme_project }}"
  108. name: "{{ openshift_cfme_flavor }}-db-pv"
  109. state: present
  110. kind: template
  111. files:
  112. - "{{ template_dir }}/{{ openshift_cfme_flavor_short }}-pv-db-example.yaml"