1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# Using a Xen VM, an OpenStack, or ipmi with Debian Live
# Possible values: xen, openstack, ipmi
OTCI_VIRT_MODE=live-booter
############################
### Xen VM provisionning ###
############################
# IP of the xen dom0 to provision the VM
OTCI_XEN_DOM0_IP=185.8.56.70
OTCI_XEN_VM_NAME=xen03
##################################
### OpenStack VM provisionning ###
##################################
# Credential for the cloud where the CI tests are happening
export OS_AUTH_URL=http://158.85.165.2:5000/v2.0
export OS_TENANT_ID=73e92bdb131f4316b709c0f8613e7b59
export OS_TENANT_NAME="tgoirand@mirantis.com"
export OS_USERNAME="tgoirand@mirantis.com"
export OS_PASSWORD=XXXXXX
# hostname of the VM where tests will happen
OTCI_VM_HOSTNAME=tempest-ci.debian.net
# ID of the Debian image to launch for the tests
OTCI_DEBIAN_IMAGE_ID=46a82126-c210-43c9-8f83-015a56451a36
# Flavor ID to use when launching the image
OTCI_INSTANCE_FLAVOR=2
# ssh keypair to use
OTCI_KEYPAIR_NAME=jenkins
# floating IP ID
OTCI_FLOATING_IP_ID=1dd50df2-0ddc-4605-93ca-5ea22f977003
# "normal" VM network (eg: eth0)
OTCI_ETH0_NET_ID=1f35e850-f354-414d-bc43-1b0b91e5d731
# management network (ie: eth1)
OTCI_ETH1_NET_ID=0b2f4c7c-c8d0-4740-9e52-b411c80ecdf9
##########################
### IPMI provisionning ###
##########################
# IP address of the IPMI of the real hardware running Debian Live
OTCI_IPMI_IP_ADDR=
# IPMI login
OTCI_IPMI_LOGIN=
# IPMI password
OTCI_IPMI_PASS=
########################################################
### Configuration of your Tempest machine networking ###
########################################################
# floating IP address of the machine where we install OpenStack
# This is in fact the IP use for ssh into the VM, (not the IP assigned to its eth0)
OTCI_FLOATING_IP_ADDR=192.168.100.2
# SSH port of the machine where we install OpenStack
OTCI_SSH_PORT=22
# management interface name
OTCI_MANAGEMENT_IFACE_NAME=ens4
# management network IP
OTCI_ETH1_CIDR=172.17.1.0/24
# Public IP pool start
OTCI_PUBIP_START=192.168.100.103
# Public IP pool end
OTCI_PUBIP_END=192.168.100.119
# OVS agent local_ip value
OTCI_LOCAL_IP=172.17.1.1
# After setup, delete, and re-add the management IP,
# then restart neutron-openvswitch-agent and neutron-metadata-agent
OTCI_LASTMINUTE_FIXUPS=yes
# URL to set as default Debian repo
OTCI_DEBIAN_REPO_URL=http://deb.debian.org/debian
OTCI_USE_SWIFT=yes
|