main.yml 4.8 KB

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