diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-06-15 15:05:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 15:05:41 -0400 |
commit | 1ded13614039e408c81520020b5dccf3523915a4 (patch) | |
tree | 7a70c321962053c319f46bd2a73d5e7d5fd1174a /roles/openshift_cfme/defaults | |
parent | 0862f7b6f1448d6ea1fe6c836b3ba1de0afb4485 (diff) | |
parent | 39e3ae639217738e3ffbb7e90a1e8940bc840798 (diff) | |
download | openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.gz openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.bz2 openshift-1ded13614039e408c81520020b5dccf3523915a4.tar.xz openshift-1ded13614039e408c81520020b5dccf3523915a4.zip |
Merge pull request #4041 from tbielawa/cfme
CFME as an OpenShift Pod
Diffstat (limited to 'roles/openshift_cfme/defaults')
-rw-r--r-- | roles/openshift_cfme/defaults/main.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/roles/openshift_cfme/defaults/main.yml b/roles/openshift_cfme/defaults/main.yml new file mode 100644 index 000000000..493e1ef68 --- /dev/null +++ b/roles/openshift_cfme/defaults/main.yml @@ -0,0 +1,38 @@ +--- +# Namespace for the CFME project +openshift_cfme_project: cfme +# Namespace/project description +openshift_cfme_project_description: ManageIQ - CloudForms Management Engine +# Basic user assigned the `admin` role for the project +openshift_cfme_user: cfme +# Project system account for enabling privileged pods +openshift_cfme_service_account: "system:serviceaccount:{{ openshift_cfme_project }}:default" +# All the required exports +openshift_cfme_pv_exports: + - miq-pv01 + - miq-pv02 + - miq-pv03 +# PV template files and their created object names +openshift_cfme_pv_data: + - pv_name: miq-pv01 + pv_template: miq-pv-db.yaml + pv_label: CFME DB PV + - pv_name: miq-pv02 + pv_template: miq-pv-region.yaml + pv_label: CFME Region PV + - pv_name: miq-pv03 + pv_template: miq-pv-server.yaml + pv_label: CFME Server PV + +# Tuning parameter to use more than 5 images at once from an ImageStream +openshift_cfme_maxImagesBulkImportedPerRepository: 100 +# Hostname/IP of the NFS server. Currently defaults to first master +openshift_cfme_nfs_server: "{{ groups.nfs.0 }}" +# TODO: Refactor '_install_app' variable. This is just for testing but +# maybe in the future it should control the entire yes/no for CFME. +# +# Whether or not the manageiq app should be initialized ('oc new-app +# --template=manageiq). If False everything UP TO 'new-app' is ran. +openshift_cfme_install_app: False +# Docker image to pull +openshift_cfme_container_image: "docker.io/manageiq/manageiq-pods:app-latest-fine" |