From 9f585b8d5eb8bffcb2040ef97ec8300c1af10d1f Mon Sep 17 00:00:00 2001 From: Fatih Degirmenci Date: Wed, 24 Jan 2018 16:08:57 +0100 Subject: xci: Integrate functest This change integrates functest in most easiest and messy way to get it up and running to bring functest into CI. The reason for this is that there are strange failures during functest healthcheck and it is important to look into those rather than beautifying how functest is integrated at this phase. Change-Id: I42e993be4aa15da022fa1e0069338447780f177e Signed-off-by: Fatih Degirmenci --- xci/playbooks/roles/run-functest/templates/env.j2 | 4 ++++ .../roles/run-functest/templates/run-functest.sh.j2 | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 xci/playbooks/roles/run-functest/templates/env.j2 create mode 100644 xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 (limited to 'xci/playbooks/roles/run-functest/templates') diff --git a/xci/playbooks/roles/run-functest/templates/env.j2 b/xci/playbooks/roles/run-functest/templates/env.j2 new file mode 100644 index 00000000..87093325 --- /dev/null +++ b/xci/playbooks/roles/run-functest/templates/env.j2 @@ -0,0 +1,4 @@ +INSTALLER_TYPE=osa +INSTALLER_IP=192.168.122.2 +EXTERNAL_NETWORK={{ external_network }} +DEPLOY_SCENARIO="os-nosdn-nofeature-noha" diff --git a/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 b/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 new file mode 100644 index 00000000..071dbca4 --- /dev/null +++ b/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 @@ -0,0 +1,19 @@ +#!/bin/bash + +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 ~/images && cd ~/images && wget http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img && cd ~ + +sudo docker run --env-file env \ + -v $(pwd)/openrc:/home/opnfv/functest/conf/openstack.creds \ + -v $(pwd)/images:/home/opnfv/functest/images \ + opnfv/functest-healthcheck -- cgit 1.2.3-korg