main.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. # Namespace for the CFME project
  3. openshift_cfme_project: cfme
  4. # Namespace/project description
  5. openshift_cfme_project_description: ManageIQ - CloudForms Management Engine
  6. # Basic user assigned the `admin` role for the project
  7. openshift_cfme_user: cfme
  8. # Project system account for enabling privileged pods
  9. openshift_cfme_service_account: "system:serviceaccount:{{ openshift_cfme_project }}:default"
  10. # All the required exports
  11. openshift_cfme_pv_exports:
  12. - miq-pv01
  13. - miq-pv02
  14. - miq-pv03
  15. # PV template files and their created object names
  16. openshift_cfme_pv_data:
  17. - pv_name: miq-pv01
  18. pv_template: miq-pv-db.yaml
  19. pv_label: CFME DB PV
  20. - pv_name: miq-pv02
  21. pv_template: miq-pv-region.yaml
  22. pv_label: CFME Region PV
  23. - pv_name: miq-pv03
  24. pv_template: miq-pv-server.yaml
  25. pv_label: CFME Server PV
  26. # Tuning parameter to use more than 5 images at once from an ImageStream
  27. openshift_cfme_maxImagesBulkImportedPerRepository: 100
  28. # Hostname/IP of the NFS server. Currently defaults to first master
  29. openshift_cfme_nfs_server: "{{ groups.nfs.0 }}"
  30. # TODO: Refactor '_install_app' variable. This is just for testing but
  31. # maybe in the future it should control the entire yes/no for CFME.
  32. #
  33. # Whether or not the manageiq app should be initialized ('oc new-app
  34. # --template=manageiq). If False everything UP TO 'new-app' is ran.
  35. openshift_cfme_install_app: False
  36. # Docker image to pull
  37. openshift_cfme_container_image: "docker.io/manageiq/manageiq-pods:app-latest-fine"