xci: Enable node provisioning and shuffle/rename stuff
[releng.git] / prototypes / xci / config / user-vars
1 #-------------------------------------------------------------------------------
2 # Set Deployment Flavor
3 #-------------------------------------------------------------------------------
4 # OPNFV XCI currently supports 4 different types of flavors:
5 #   - all in one (aio): 1 xci VM which acts as controller and compute node
6 #   - mini: 3 VMs, 1 xci VM, 1 controller, and 1 compute nodes
7 #   - noha: 4 VMs, 1 xci VM, 1 controller, and 2 compute nodes
8 #   - ha: 6 VMs, 1 xci VM, 3 controllers, and 2 compute nodes
9 #
10 # Apart from having different number of nodes, CPU, RAM, and disk allocations
11 # also differ from each other. Please take a look at the env-vars files for
12 # each of these flavors.
13 #
14 # Examples:
15 #   export XCI_FLAVOR="aio"
16 # or
17 #   export XCI_FLAVOR="mini"
18 # or
19 #   export XCI_FLAVOR="noha"
20 # or
21 #   export XCI_FLAVOR="ha"
22 #-------------------------------------------------------------------------------
23 export XCI_FLAVOR=${XCI_FLAVOR:-aio}
24
25 #-------------------------------------------------------------------------------
26 # Set Paths to where git repositories of XCI Components will be cloned
27 #-------------------------------------------------------------------------------
28 # OPNFV XCI Sandbox is not verified to be used as non-root user as of yet so
29 # changing these paths might break things.
30 #-------------------------------------------------------------------------------
31 export OPNFV_RELENG_PATH=/opt/releng
32 export OPENSTACK_BIFROST_PATH=/opt/bifrost
33 export OPENSTACK_OSA_PATH=/opt/openstack-ansible
34
35 #-------------------------------------------------------------------------------
36 # Configure some other stuff
37 #-------------------------------------------------------------------------------
38 # Set the verbosity for ansible
39 #
40 # Examples:
41 #   ANSIBLE_VERBOSITY="-v"
42 # or
43 #   ANSIBLE_VERBOSITY="-vvvv"
44 export ANSIBLE_VERBOSITY=${ANSIBLE_VERBOSITY-""}