main.yml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. ---
  2. # Namespace for the CFME project
  3. openshift_cfme_project: openshift-cfme
  4. # Namespace/project description
  5. openshift_cfme_project_description: ManageIQ - CloudForms Management Engine 4.6
  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. For example:
  19. #
  20. # openshift_cfme_template_parameters:
  21. # DATABASE_USER: root
  22. # DATABASE_PASSWORD: @_grrrr8Pa$$.h3r3
  23. # DATABASE_IP: 10.1.1.10
  24. # DATABASE_PORT: 5432
  25. # DATABASE_NAME: vmdb_production
  26. ######################################################################
  27. # STORAGE OPTIONS
  28. ######################################################################
  29. # DEFAULT - 'nfs'
  30. # Allowed options: nfs, external, preconfigured, cloudprovider.
  31. openshift_cfme_storage_class: nfs
  32. # * nfs - Best used for proof-of-concept installs. Will setup NFS on a
  33. # cluster host (defaults to your first master in the inventory file)
  34. # to back the required PVCs. The application requires a PVC and the
  35. # database (which may be hosted externally) may require a
  36. # second. PVC minimum required sizes are: 5GiB for the MIQ
  37. # application, and 15GiB for the PostgreSQL database (20GiB minimum
  38. # available space on an volume/partition if used specifically for
  39. # NFS purposes)
  40. #
  41. # * external - You are using an external NFS server, such as a netapp
  42. # appliance. See the STORAGE - NFS OPTIONS section below for
  43. # required information.
  44. #
  45. # * preconfigured - This CFME role will do NOTHING to modify storage
  46. # settings. This option assumes expert knowledge and that you have
  47. # done everything required ahead of time.
  48. #
  49. # * cloudprovider - You are using an OCP cloudprovider integration for
  50. # your storage class. For this to work you must have already
  51. # configured the required inventory parameters for your cloud
  52. # provider
  53. #
  54. # Ensure 'openshift_cloudprovider_kind' is defined (aws or gce) and
  55. # that the applicable cloudprovider parameters are provided.
  56. ######################################################################
  57. # STORAGE - NFS OPTIONS
  58. ######################################################################
  59. # [OPTIONAL] - If you are using an EXTERNAL NFS server, such as a
  60. # netapp appliance, then you must set the hostname here. Leave the
  61. # value as 'false' if you are not using external NFS
  62. openshift_cfme_storage_external_nfs_hostname: false
  63. # [OPTIONAL] - If you are using external NFS then you must set the base
  64. # path to the exports location here.
  65. #
  66. # Or, change this value if you want to change the default path used
  67. # for local NFS exports.
  68. openshift_cfme_storage_external_nfs_base_dir: /exports/
  69. ######################################################################
  70. # VARIOUS CONSTANTS - DO NOT OVERRIDE THESE UNDER ANY CIRCUMSTANCES
  71. ######################################################################
  72. ######################################################################
  73. # Misc enumerated values
  74. # Allowed choices for the storage class parameter
  75. openshift_cfme_storage_classes:
  76. - nfs
  77. - external
  78. - preconfigured
  79. - cloudprovider
  80. # Name of the application templates with object/parameter definitions
  81. openshift_cfme_app_templates:
  82. - miq-template-ext-db
  83. - miq-template
  84. # PostgreSQL database connection parameters
  85. openshift_cfme_db_parameters:
  86. - DATABASE_USER
  87. - DATABASE_PASSWORD
  88. - DATABASE_IP
  89. - DATABASE_PORT
  90. - DATABASE_NAME
  91. ######################################################################
  92. # ACCOUNTING
  93. ######################################################################
  94. # Service Account SSCs
  95. openshift_system_account_sccs:
  96. - name: miq-anyuid
  97. resource_name: anyuid
  98. - name: miq-orchestrator
  99. resource_name: anyuid
  100. - name: miq-privileged
  101. resource_name: privileged
  102. - name: miq-httpd
  103. resource_name: miq-httpd
  104. # Service Account Roles
  105. openshift_cfme_system_account_roles:
  106. - name: miq-orchestrator
  107. resource_name: view
  108. - name: miq-orchestrator
  109. resource_name: edit
  110. ######################################################################
  111. # SCAFFOLDING - These are parameters we pre-seed that a user may or
  112. # may not set later
  113. ######################################################################
  114. # A hash of parameters you want to override or set in the
  115. # miq-template.yaml or miq-template-ext-db.yaml templates. Set this in
  116. # your inventory file as a simple hash. Acceptable values are defined
  117. # under the .parameters list in files/miq-template{-ext-db}.yaml
  118. # Example:
  119. #
  120. # openshift_cfme_template_parameters={'APPLICATION_MEM_REQ': '512Mi'}
  121. openshift_cfme_template_parameters: {}
  122. # # All the required exports
  123. # openshift_cfme_pv_exports:
  124. # - miq-pv01
  125. # - miq-pv02
  126. # - miq-pv03
  127. # # PV template files and their created object names
  128. # openshift_cfme_pv_data:
  129. # - pv_name: miq-pv01
  130. # pv_template: miq-pv-db.yaml
  131. # pv_label: CFME DB PV
  132. # - pv_name: miq-pv02
  133. # pv_template: miq-pv-region.yaml
  134. # pv_label: CFME Region PV
  135. # - pv_name: miq-pv03
  136. # pv_template: miq-pv-server.yaml
  137. # pv_label: CFME Server PV
  138. # TODO: Refactor '_install_app' variable. This is just for testing but
  139. # maybe in the future it should control the entire yes/no for CFME.
  140. #
  141. # Whether or not the manageiq app should be initialized ('oc new-app
  142. # --template=manageiq). If False everything UP TO 'new-app' is ran.
  143. openshift_cfme_install_app: False
  144. # Docker image to pull
  145. # 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' }}"
  146. # openshift_cfme_application_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'frontend-latest' }}"
  147. # 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' }}"
  148. # openshift_cfme_memcached_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'memcached-latest-fine' }}"
  149. # openshift_cfme_postgresql_img_tag: "{{ 'latest' if openshift_deployment_type == 'openshift-enterprise' else 'postgresql-latest-fine' }}"
  150. # 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' }}"