main.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. __openshift_management_flavors:
  30. miq:
  31. short: miq
  32. long: manageiq
  33. cfme:
  34. short: cfme
  35. long: cloudforms
  36. __openshift_management_flavor: "{{ __openshift_management_flavors[openshift_management_app_template.split('-')[0]]['long'] }}"
  37. __openshift_management_flavor_short: "{{ __openshift_management_flavors[openshift_management_app_template.split('-')[0]]['short'] }}"
  38. __openshift_management_use_ext_db: "{{ true if 'ext-db' in openshift_management_app_template else false }}"
  39. ######################################################################
  40. # ACCOUNTING
  41. ######################################################################
  42. # Service Account SSCs
  43. __openshift_system_account_sccs:
  44. - name: -anyuid
  45. resource_name: anyuid
  46. - name: -orchestrator
  47. resource_name: anyuid
  48. - name: -privileged
  49. resource_name: privileged
  50. - name: -httpd
  51. resource_name: anyuid
  52. # Service Account Roles
  53. __openshift_management_system_account_roles:
  54. - name: -orchestrator
  55. resource_name: view
  56. - name: -orchestrator
  57. resource_name: edit
  58. ######################################################################
  59. # DEFAULTS
  60. ######################################################################
  61. # User only has to provide parameters they need to override, we will
  62. # do a hash update method with the provided user parameters to create
  63. # the final connection structure.
  64. #
  65. # TODO: Update user provided configs with this if they are missing fields
  66. __openshift_management_required_db_conn_params:
  67. - DATABASE_USER
  68. - DATABASE_PASSWORD
  69. - DATABASE_IP
  70. - DATABASE_PORT
  71. - DATABASE_NAME