diff options
author | Jo¶rgen Karlsson <jorgen.w.karlsson@ericsson.com> | 2015-12-07 18:51:22 +0100 |
---|---|---|
committer | Jörgen Karlsson <jorgen.w.karlsson@ericsson.com> | 2015-12-08 15:09:22 +0000 |
commit | 70c27f24d07411103fb63090d17390f5ea249ebc (patch) | |
tree | 8e831abdde3f7d0c3bc67b79e8358d0d120cb71f /ci/prepare_env.sh | |
parent | 7dcceb89768b2ab2de9d88718978c850afd092dd (diff) |
Docker image cleanup
- Renamed docker image 'opnfv/yardstick-ci' -> 'opnfv/yardstick'
as recommended by project.
- Added cirros image and releng repo to docker image in order to
make it more usable in offline mode.
- Renamed run_benchmarks to run_tests.sh
- Moved some environment setups to a new file prepare_env.sh
- Added daily test suites file for ericsson and LF pods.
Docker image is now built and pushed by releng script:
https://gerrit.opnfv.org/gerrit/gitweb?p=releng.git;a=blob;f=jjb/opnfv/opnfv-docker.sh
The ci/docker/Makefile file is not used by releng to build yardstick
image but the makefile can still be used to build and test docker
images locally.
Change-Id: If9d6740b39e91d145c587d8d5e2bd372d09a46a9
Signed-off-by: Jo¶rgen Karlsson <jorgen.w.karlsson@ericsson.com>
Diffstat (limited to 'ci/prepare_env.sh')
-rwxr-xr-x | ci/prepare_env.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ci/prepare_env.sh b/ci/prepare_env.sh new file mode 100755 index 000000000..89d4ca74d --- /dev/null +++ b/ci/prepare_env.sh @@ -0,0 +1,31 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2015 Ericsson AB and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +# Perepare the environment to run yardstick ci + +: ${INSTALLER_TYPE:='fuel'} +: ${INSTALLER_IP:='10.20.0.2'} + +: ${POD_NAME:='opnfv-jump-2'} +: ${EXTERNAL_NETWORK:='net04_ext'} + +echo +echo "INFO: Creating openstack credentials .." + +# Create openstack credentials +OPENRC=/home/opnfv/openrc +if [ ! -f $OPENRC ]; then + $RELENG_REPO_DIR/utils/fetch_os_creds.sh \ + -d $OPENRC \ + -i ${INSTALLER_TYPE} -a ${INSTALLER_IP} +fi +source $OPENRC + +export EXTERNAL_NETWORK INSTALLER_TYPE POD_NAME |