main.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ---
  2. # Misc enumerated values
  3. #---------------------------------------------------------------------
  4. # Allowed choices for the storage class parameter
  5. __openshift_management_storage_classes:
  6. - nfs
  7. - nfs_external
  8. - preconfigured
  9. - cloudprovider
  10. #---------------------------------------------------------------------
  11. # DEFAULT PV SIZES
  12. # How large to make the MIQ application PV
  13. __openshift_management_app_pv_size: 5Gi
  14. # How large to make the MIQ PostgreSQL PV
  15. __openshift_management_db_pv_size: 15Gi
  16. # Name of the application templates with object/parameter definitions
  17. __openshift_management_app_templates:
  18. - miq-template-ext-db
  19. - miq-template
  20. - cfme-template-ext-db
  21. - cfme-template
  22. # PostgreSQL database connection parameters
  23. __openshift_management_db_parameters:
  24. - DATABASE_USER
  25. - DATABASE_PASSWORD
  26. - DATABASE_IP
  27. - DATABASE_PORT
  28. - DATABASE_NAME
  29. # # Commented out until we can support both CFME and MIQ
  30. # # openshift_management_flavor: "{{ 'cloudforms' if openshift_deployment_type == 'openshift-enterprise' else 'manageiq' }}"
  31. #openshift_management_flavor: cloudforms
  32. openshift_management_flavor: manageiq
  33. # TODO: Make this conditional as well based on the prior variable
  34. # # openshift_management_flavor_short: "{{ 'cfme' if openshift_deployment_type == 'openshift-enterprise' else 'miq' }}"
  35. # openshift_management_flavor_short: cfme
  36. openshift_management_flavor_short: miq
  37. ######################################################################
  38. # ACCOUNTING
  39. ######################################################################
  40. # Service Account SSCs
  41. __openshift_system_account_sccs:
  42. - name: -anyuid
  43. resource_name: anyuid
  44. - name: -orchestrator
  45. resource_name: anyuid
  46. - name: -privileged
  47. resource_name: privileged
  48. - name: -httpd
  49. resource_name: anyuid
  50. # Service Account Roles
  51. __openshift_management_system_account_roles:
  52. - name: -orchestrator
  53. resource_name: view
  54. - name: -orchestrator
  55. resource_name: edit
  56. ######################################################################
  57. # DEFAULTS
  58. ######################################################################
  59. # User only has to provide parameters they need to override, we will
  60. # do a hash update method with the provided user parameters to create
  61. # the final connection structure.
  62. #
  63. # TODO: Update user provided configs with this if they are missing fields
  64. __openshift_management_required_db_conn_params:
  65. - DATABASE_USER
  66. - DATABASE_PASSWORD
  67. - DATABASE_IP
  68. - DATABASE_PORT
  69. - DATABASE_NAME