main.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. ---
  2. ######################################################################)
  3. # Users, projects, and privileges
  4. - name: Run pre-install CFME validation checks
  5. include: validate.yml
  6. - name: "Ensure the CFME '{{ openshift_cfme_project }}' namespace exists"
  7. oc_project:
  8. state: present
  9. name: "{{ openshift_cfme_project }}"
  10. display_name: "{{ openshift_cfme_project_description }}"
  11. - name: Create and Authorize CFME Accounts
  12. include: accounts.yml
  13. ######################################################################
  14. # STORAGE - Initialize basic storage classes
  15. #---------------------------------------------------------------------
  16. # * nfs - set up NFS shares on the first master for a proof of concept
  17. - name: Create required NFS exports for CFME app storage
  18. include: storage/nfs.yml
  19. when: openshift_cfme_storage_class == 'nfs'
  20. #---------------------------------------------------------------------
  21. # * external - NFS again, but pointing to a pre-configured NFS server
  22. - name: Note Storage Type - External NFS
  23. debug:
  24. msg: Setting up external NFS storage, openshift_cfme_storage_class is 'external'
  25. when: openshift_cfme_storage_class == 'external'
  26. #---------------------------------------------------------------------
  27. # * cloudprovider - use an existing cloudprovider based storage
  28. - name: Note Storage Type - Cloud Provider
  29. debug:
  30. msg: Validating cloud provider storage type, openshift_cfme_storage_class is 'cloudprovider'
  31. when: openshift_cfme_storage_class == 'cloudprovider'
  32. #---------------------------------------------------------------------
  33. # * preconfigured - don't do anything, assume it's all there ready to go
  34. - name: Note Storage Type - Preconfigured
  35. debug:
  36. msg: Skipping storage configuration, openshift_cfme_storage_class is 'preconfigured'
  37. when: openshift_cfme_storage_class == 'preconfigured'
  38. ######################################################################
  39. # APPLICATION TEMPLATE
  40. - name: Install the correct CFME app template
  41. include: template.yml
  42. ######################################################################
  43. # APP & DB Storage
  44. ######################################################################
  45. # ######################################################################
  46. # # Let's do this
  47. # - name: Ensure the CFME Server is created
  48. # oc_process:
  49. # namespace: "{{ openshift_cfme_project }}"
  50. # template_name: manageiq
  51. # create: True
  52. # params:
  53. # APPLICATION_IMG_NAME: "{{ openshift_cfme_application_img_name }}"
  54. # POSTGRESQL_IMG_NAME: "{{ openshift_cfme_postgresql_img_name }}"
  55. # MEMCACHED_IMG_NAME: "{{ openshift_cfme_memcached_img_name }}"
  56. # APPLICATION_IMG_TAG: "{{ openshift_cfme_application_img_tag }}"
  57. # POSTGRESQL_IMG_TAG: "{{ openshift_cfme_postgresql_img_tag }}"
  58. # MEMCACHED_IMG_TAG: "{{ openshift_cfme_memcached_img_tag }}"
  59. # register: cfme_new_app_process
  60. # run_once: True
  61. # when:
  62. # # User said to install CFME in their inventory
  63. # - openshift_cfme_install_app | bool
  64. # # # The server app doesn't exist already
  65. # # - not miq_server_check.results.results.0
  66. # - debug:
  67. # var: cfme_new_app_process
  68. # ######################################################################
  69. # # Various cleanup steps
  70. # # TODO: Not sure what to do about this right now. Might be able to
  71. # # just delete it? This currently warns about "Unable to find
  72. # # '<TEMP_DIR>' in expected paths."
  73. # - name: Ensure the temporary PV/App templates are erased
  74. # file:
  75. # path: "{{ item }}"
  76. # state: absent
  77. # with_fileglob:
  78. # - "{{ template_dir }}/*.yaml"
  79. # - name: Ensure the temporary PV/app template directory is erased
  80. # file:
  81. # path: "{{ template_dir }}"
  82. # state: absent