summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2
diff options
context:
space:
mode:
Diffstat (limited to 'xci/playbooks/roles/run-functest/templates/run-functest.sh.j2')
-rw-r--r--xci/playbooks/roles/run-functest/templates/run-functest.sh.j219
1 files changed, 19 insertions, 0 deletions
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