diff options
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 |