diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-02-28 08:51:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-28 08:51:37 +0000 |
commit | 796fe74892bfdf29469b836a807d2a53d69337f3 (patch) | |
tree | 7cc76ce60fdc09ca80d64c6712135d4172388dc2 /docker/add_images.sh | |
parent | fd459c00eb681f7f917fccd474d49aaad1bae1f1 (diff) | |
parent | adbcb25389612d86d446d5f34787b1b2519c3b83 (diff) |
Merge "Add aarch64 custom config"
Diffstat (limited to 'docker/add_images.sh')
-rwxr-xr-x | docker/add_images.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/add_images.sh b/docker/add_images.sh new file mode 100755 index 000000000..a43e0ba45 --- /dev/null +++ b/docker/add_images.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# +# This script downloads the images that are used for testing +# and places them in the functest docker image + +CIRROS_REPO_URL=http://download.cirros-cloud.net +CIRROS_AARCH64_TAG=daily/20161201 +CIRROS_X86_64_TAG=0.3.5 + +wget ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-disk.img +wget ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-lxc.tar.gz -P ${FUNCTEST_BASE_DIR}/data/ +wget http://205.177.226.237:9999/onosfw/firewall_block_image.img -P ${FUNCTEST_BASE_DIR}/data/ + +# Add the 3-part image for aarch64, since functest can be run from an x86 machine to test an aarch64 POD +wget ${CIRROS_REPO_URL}/daily/${CIRROS_AARCH64_TAG}/cirros-$(basename ${CIRROS_AARCH64_TAG})-aarch64-disk.img -P ${FUNCTEST_BASE_DIR}/data/ +wget ${CIRROS_REPO_URL}/daily/${CIRROS_AARCH64_TAG}/cirros-$(basename ${CIRROS_AARCH64_TAG})-aarch64-initramfs -P ${FUNCTEST_BASE_DIR}/data/ +wget ${CIRROS_REPO_URL}/daily/${CIRROS_AARCH64_TAG}/cirros-$(basename ${CIRROS_AARCH64_TAG})-aarch64-kernel -P ${FUNCTEST_BASE_DIR}/data/ |