main.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 class
  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 {{ openshift_cfme_storage_class }}"
  25. when: openshift_cfme_storage_class == 'nfs_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 CFME app and PV templates
  41. include: template.yml
  42. ######################################################################
  43. # APP & DB Storage
  44. # For local/external NFS backed installations
  45. - name: "Create the required App and DB PVs using {{ openshift_cfme_storage_class }}"
  46. include: storage/create_nfs_pvs.yml
  47. when:
  48. - openshift_cfme_storage_class in ['nfs', 'nfs_external']
  49. ######################################################################
  50. # CREATE APP
  51. - name: Note the correct ext-db template name
  52. set_fact:
  53. openshift_cfme_template_name: "{{ openshift_cfme_flavor }}-ext-db"
  54. when:
  55. - openshift_cfme_app_template in ['miq-template-ext-db', 'cfme-template-ext-db']
  56. - name: Note the correct podified db template name
  57. set_fact:
  58. openshift_cfme_template_name: "{{ openshift_cfme_flavor }}"
  59. when:
  60. - openshift_cfme_app_template in ['miq-template', 'cfme-template']
  61. - name: Ensure the CFME App is created
  62. oc_process:
  63. namespace: "{{ openshift_cfme_project }}"
  64. template_name: "{{ openshift_cfme_template_name }}"
  65. create: True
  66. params: "{{ openshift_cfme_template_parameters }}"