summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/roles/prepare-functest/templates/run-functest.sh.j2
blob: db3daa545b9f6f23405ba07a461ff2e3083dcb3d (plain)
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
#!/bin/bash

# Variables that we need to pass from XCI to functest
XCI_ENV=(INSTALLER_TYPE DEPLOY_SCENARIO XCI_FLAVOR OPENSTACK_OSA_VERSION)

source /root/openrc

openstack --insecure network create --external \
  --provider-physical-network flat \
  --provider-network-type flat {{ external_network }}

openstack --insecure subnet create --network {{ external_network }} \
  --allocation-pool {{ allocation_pool }} \
  --subnet-range {{ subnet_cidr }} --gateway {{ gateway_ip }} \
  --no-dhcp {{ subnet_name }}

mkdir ~/results/
mkdir ~/images && cd ~/images && wget -q http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img && cd ~

# Extract variables from xci.env file
if [[ -e /root/xci.env ]]; then
    for x in ${XCI_ENV[@]}; do
        grep "^${x}=" /root/xci.env >> /root/env
    done
fi

# Dump the env file
echo "------------------------------------------------------"
echo "------------- functest environment file --------------"
cat /root/env
echo "------------------------------------------------------"

sudo docker run --env-file env \
    -v $(pwd)/openrc:/home/opnfv/functest/conf/env_file  \
    -v $(pwd)/images:/home/opnfv/functest/images  \
    -v $(pwd)/results:/home/opnfv/functest/results \
    opnfv/functest-healthcheck