main.yml 2.1 KB

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