main.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ---
  2. # Namespace for the CFME project
  3. openshift_cfme_project: openshift-cfme
  4. # Namespace/project description
  5. openshift_cfme_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_cfme_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_cfme_template_parameters variable. You only need to
  19. # provide parameters that differ from the ones in the following
  20. # example. Any omitted parameter by the user will be default to its
  21. # default below:
  22. #
  23. # openshift_cfme_template_parameters:
  24. # DATABASE_USER: 'root'
  25. # DATABASE_PASSWORD: ''
  26. # DATABASE_IP: ''
  27. # DATABASE_PORT: 5432
  28. # DATABASE_NAME: 'vmdb_production'
  29. #
  30. # See also var: __openshift_cfme_default_db_connection_info
  31. ######################################################################
  32. # STORAGE OPTIONS
  33. ######################################################################
  34. # DEFAULT - 'nfs'
  35. # Allowed options: nfs, nfs_external, preconfigured, cloudprovider.
  36. openshift_cfme_storage_class: nfs
  37. # * nfs - Best used for proof-of-concept installs. Will setup NFS on a
  38. # cluster host (defaults to your first master in the inventory file)
  39. # to back the required PVCs. The application requires a PVC and the
  40. # database (which may be hosted externally) may require a
  41. # second. PVC minimum required sizes are: 5GiB for the MIQ
  42. # application, and 15GiB for the PostgreSQL database (20GiB minimum
  43. # available space on an volume/partition if used specifically for
  44. # NFS purposes)
  45. #
  46. # * nfs_external - You are using an external NFS server, such as a
  47. # netapp appliance. See the STORAGE - NFS OPTIONS section below for
  48. # required information.
  49. #
  50. # * preconfigured - This CFME role will do NOTHING to modify storage
  51. # settings. This option assumes expert knowledge and that you have
  52. # done everything required ahead of time.
  53. #
  54. # * cloudprovider - You are using an OCP cloudprovider integration for
  55. # your storage class. For this to work you must have already
  56. # configured the required inventory parameters for your cloud
  57. # provider
  58. #
  59. # Ensure 'openshift_cloudprovider_kind' is defined (aws or gce) and
  60. # that the applicable cloudprovider parameters are provided.
  61. #---------------------------------------------------------------------
  62. # STORAGE - NFS OPTIONS
  63. #---------------------------------------------------------------------
  64. # [OPTIONAL] - If you are using an EXTERNAL NFS server, such as a
  65. # netapp appliance, then you must set the hostname here. Leave the
  66. # value as 'false' if you are not using external NFS.
  67. openshift_cfme_storage_nfs_external_hostname: false
  68. # [OPTIONAL] - If you are using external NFS then you must set the base
  69. # path to the exports location here.
  70. #
  71. # Additionally: EXTERNAL NFS REQUIRES that YOU CREATE the nfs exports
  72. # that will back the application PV and optionally the database
  73. # pv. Export path definitions, relative to
  74. # {{ openshift_cfme_storage_nfs_base_dir }}
  75. #
  76. # * REQUIRED[ALWAYS]: /miq-app - MIQ Server PV.
  77. #
  78. # * REQUIRED[NFS_EXTERNAL]: /miq-db - Podified DB PB
  79. #
  80. # LOCAL NFS NOTE:
  81. #
  82. # You may may also change this value if you want to change the default
  83. # path used for local NFS exports.
  84. openshift_cfme_storage_nfs_base_dir: /exports
  85. #
  86. # LOCAL NFS NOTE:
  87. #
  88. # You may override the automatically selected LOCAL NFS server by
  89. # setting this variable. Useful for testing specific task files.
  90. openshift_cfme_storage_nfs_local_hostname: false
  91. #---------------------------------------------------------------------
  92. # DEFAULT PV SIZES
  93. # How large to make the MIQ application PV
  94. openshift_cfme_app_pv_size: 5Gi
  95. # How large to make the MIQ PostgreSQL PV
  96. openshift_cfme_db_pv_size: 15Gi
  97. ######################################################################
  98. # SCAFFOLDING - These are parameters we pre-seed that a user may or
  99. # may not set later
  100. ######################################################################
  101. # A hash of parameters you want to override or set in the
  102. # miq-template.yaml or miq-template-ext-db.yaml templates. Set this in
  103. # your inventory file as a simple hash. Acceptable values are defined
  104. # under the .parameters list in files/miq-template{-ext-db}.yaml
  105. # Example:
  106. #
  107. # openshift_cfme_template_parameters={'APPLICATION_MEM_REQ': '512Mi'}
  108. openshift_cfme_template_parameters: {}
  109. ######################################################################
  110. # Whether or not the cfme app should be initialized ('oc new-app
  111. # --template=manageiq). If False everything UP TO 'new-app' is ran.
  112. openshift_cfme_install_app: false
  113. # Docker image to pull
  114. # openshift_cfme_application_img_name: "{{ 'registry.access.redhat.com/cloudforms46/cfme-openshift-app' if openshift_deployment_type == 'openshift-enterprise' else 'docker.io/manageiq/manageiq-pods' }}"
  115. # openshift_cfme_application_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'frontend-latest' }}"
  116. # openshift_cfme_memcached_img_name: "{{ 'registry.access.redhat.com/cloudforms46/cfme-openshift-memcached' if openshift_deployment_type == 'openshift-enterprise' else 'docker.io/manageiq/manageiq-pods' }}"
  117. # openshift_cfme_memcached_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'memcached-latest-fine' }}"
  118. # openshift_cfme_postgresql_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'postgresql-latest-fine' }}"
  119. # openshift_cfme_postgresql_img_name: "{{ 'registry.access.redhat.com/cloudforms46/cfme-openshift-postgresql' if openshift_deployment_type == 'openshift-enterprise' else 'docker.io/manageiq/manageiq-pods' }}"