main.yml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. ---
  2. # Namespace for the CFME project
  3. openshift_management_project: openshift-management
  4. # Namespace/project description
  5. openshift_management_project_description: CloudForms Management Engine
  6. ######################################################################
  7. # BASE TEMPLATE AND DATABASE OPTIONS
  8. ######################################################################
  9. # Which flavor of CFME would you like? You may install CFME using a
  10. # podified PostgreSQL server, or you may choose to use an existing
  11. # PostgreSQL server.
  12. #
  13. # Choose 'miq-template' for a podified database install
  14. # Choose 'miq-template-ext-db' for an external database install
  15. openshift_management_app_template: miq-template
  16. # If you are using the miq-template-ext-db template then you must add
  17. # the required database parameters to the
  18. # openshift_management_template_parameters variable.
  19. ######################################################################
  20. # STORAGE OPTIONS
  21. ######################################################################
  22. # DEFAULT - 'nfs'
  23. # Allowed options: nfs, nfs_external, preconfigured, cloudprovider.
  24. openshift_management_storage_class: nfs
  25. # * nfs - Best used for proof-of-concept installs. Will setup NFS on a
  26. # cluster host (defaults to your first master in the inventory file)
  27. # to back the required PVCs. The application requires a PVC and the
  28. # database (which may be hosted externally) may require a
  29. # second. PVC minimum required sizes are: 5GiB for the MIQ
  30. # application, and 15GiB for the PostgreSQL database (20GiB minimum
  31. # available space on an volume/partition if used specifically for
  32. # NFS purposes)
  33. #
  34. # * nfs_external - You are using an external NFS server, such as a
  35. # netapp appliance. See the STORAGE - NFS OPTIONS section below for
  36. # required information.
  37. #
  38. # * preconfigured - This CFME role will do NOTHING to modify storage
  39. # settings. This option assumes expert knowledge and that you have
  40. # done everything required ahead of time.
  41. #
  42. # * cloudprovider - You are using an OCP cloudprovider integration for
  43. # your storage class. For this to work you must have already
  44. # configured the required inventory parameters for your cloud
  45. # provider
  46. #
  47. # Ensure 'openshift_cloudprovider_kind' is defined (aws or gce) and
  48. # that the applicable cloudprovider parameters are provided.
  49. #---------------------------------------------------------------------
  50. # STORAGE - NFS OPTIONS
  51. #---------------------------------------------------------------------
  52. # [OPTIONAL] - If you are using an EXTERNAL NFS server, such as a
  53. # netapp appliance, then you must set the hostname here. Leave the
  54. # value as 'false' if you are not using external NFS.
  55. openshift_management_storage_nfs_external_hostname: false
  56. # [OPTIONAL] - If you are using external NFS then you must set the base
  57. # path to the exports location here.
  58. #
  59. # Additionally: EXTERNAL NFS REQUIRES that YOU CREATE the nfs exports
  60. # that will back the application PV and optionally the database
  61. # pv. Export path definitions, relative to
  62. # {{ openshift_management_storage_nfs_base_dir }}
  63. #
  64. # LOCAL NFS NOTE:
  65. #
  66. # You may may also change this value if you want to change the default
  67. # path used for local NFS exports.
  68. openshift_management_storage_nfs_base_dir: /exports
  69. #
  70. # LOCAL NFS NOTE:
  71. #
  72. # You may override the automatically selected LOCAL NFS server by
  73. # setting this variable. Useful for testing specific task files.
  74. openshift_management_storage_nfs_local_hostname: false
  75. ######################################################################
  76. # DEFAULT ACCOUNT INFORMATION
  77. ######################################################################
  78. # These are the default values for the username and password of the
  79. # management app. Changing these values in your inventory will not
  80. # change your username or password. You should only need to change
  81. # these values in your inventory if you already changed the actual
  82. # name and password AND are trying to use integration scripts.
  83. #
  84. # For example, adding this cluster as a container provider,
  85. # playbooks/byo/openshift-management/add_container_provider.yml
  86. openshift_management_username: admin
  87. openshift_management_password: smartvm
  88. ######################################################################
  89. # SCAFFOLDING - These are parameters we pre-seed that a user may or
  90. # may not set later
  91. ######################################################################
  92. # A hash of parameters you want to override or set in the
  93. # miq-template.yaml or miq-template-ext-db.yaml templates. Set this in
  94. # your inventory file as a simple hash. Acceptable values are defined
  95. # under the .parameters list in files/miq-template{-ext-db}.yaml
  96. # Example:
  97. #
  98. # openshift_management_template_parameters={'APPLICATION_MEM_REQ': '512Mi'}
  99. openshift_management_template_parameters: {}