5b21d92ef3
This commit splits the Browbeat CI out by workload by passing in different playbooks, mostly just makes a different playbook for yoda because why deploy an overcloud before testing yoda? makes no sense and adds another couple of hours to the test. We also add an integration test playbook but that doesn't seriously diverge from the normal testing playbook at the moment Change-Id: Ic83412cac668cbf7d2fb6d8d86c2c86eb354c9dd
81 lines
2.8 KiB
Bash
Executable File
81 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
pushd $WORKSPACE/tripleo-quickstart
|
|
sed -i.bak '/extras/d' $WORKSPACE/tripleo-quickstart/quickstart-extras-requirements.txt
|
|
echo "file://$WORKSPACE/tripleo-quickstart-extras/#egg=tripleo-quickstart-extras" >> $WORKSPACE/tripleo-quickstart/quickstart-extras-requirements.txt
|
|
popd
|
|
|
|
export OPT_DEBUG_ANSIBLE=0
|
|
export HW_ENV_DIR=$WORKSPACE/tripleo-environments/hardware_environments/$HW_ENV
|
|
export NETWORK_ISOLATION=no_vlan
|
|
export REQS=quickstart-extras-requirements.txt
|
|
export VARS="elastic_enabled=true \
|
|
--extra-vars grafana_enabled=true \
|
|
--extra-vars elastic_host=$ELASTIC_HOST \
|
|
--extra-vars graphite_host=$GRAPH_HOST \
|
|
--extra-vars statsd_host=$GRAPH_HOST \
|
|
--extra-vars statsd_enabled=True \
|
|
--extra-vars grafana_host=$GRAPH_HOST \
|
|
--extra-vars grafana_username=$GRAFANA_USER \
|
|
--extra-vars grafana_password=$GRAFANA_PASS \
|
|
--extra-vars browbeat_cloud_name=$CLOUD_NAME \
|
|
--extra-vars browbeat_config_file=$BENCHMARK \
|
|
--extra-vars graphite_prefix=$CLOUD_NAME"
|
|
|
|
#For Pipeline builds we need to get the pipeline image
|
|
#we check that the pipeline image var is set and then
|
|
#configure it to be used.
|
|
if [ ! -z ${current_build+x} ]
|
|
then
|
|
source $WORKSPACE/tripleo-environments/ci-scripts/internal-functions.sh
|
|
hash=$(get_delorean_hash_from_url $current_build)
|
|
|
|
#Ocata pipeling moving to new folder structure
|
|
if [[ $RELEASE == *ocata* ]]
|
|
then
|
|
cached_image="$INTERNAL_IMAGE_SERVER/centos-org-image-cache/$RELEASE/rdo_trunk/$hash/undercloud.qcow2"
|
|
export VARS="$VARS --extra-vars undercloud_image_url=$cached_image --extra-vars dlrn_hash=$hash"
|
|
elif [[ $RELEASE == *rhos-* ]]
|
|
then
|
|
cached_image="$INTERNAL_IMAGE_SERVER/$RELEASE/$current_build/undercloud.qcow2"
|
|
export VARS="$VARS --extra-vars undercloud_image_url=$cached_image --extra-vars rhos_puddle=$current_build"
|
|
else
|
|
cached_image="$INTERNAL_IMAGE_SERVER/centos-org-image-cache/$RELEASE/delorean/$hash/undercloud.qcow2"
|
|
export VARS="$VARS --extra-vars undercloud_image_url=$cached_image --extra-vars dlrn_hash=$hash"
|
|
fi
|
|
|
|
#If we are not in the pipeline downstream builds need to use current-passed-ci
|
|
elif [[ $RELEASE == *rhos-* ]]
|
|
then
|
|
export RELEASE="$RELEASE-current-passed-ci"
|
|
fi
|
|
|
|
|
|
|
|
#used to ensure concurrent jobs on the same executor work
|
|
socketdir=$(mktemp -d /tmp/sockXXXXXX)
|
|
export ANSIBLE_SSH_CONTROL_PATH=$socketdir/%%h-%%r
|
|
|
|
|
|
pushd $WORKSPACE/tripleo-quickstart
|
|
|
|
# Solves Ansible issue 13278
|
|
sed -i '/defaults/a timeout = 60' ansible.cfg
|
|
|
|
|
|
echo "file://$WORKSPACE/browbeat/#egg=browbeat" >> $REQS
|
|
|
|
./quickstart.sh \
|
|
--playbook $PLAYBOOK \
|
|
--working-dir $WORKSPACE \
|
|
--bootstrap \
|
|
--no-clone \
|
|
-t all \
|
|
-S overcloud-validate \
|
|
-R $RELEASE \
|
|
--config $HW_ENV_DIR/network_configs/$NETWORK_ISOLATION/config_files/config.yml \
|
|
--extra-vars @$HW_ENV_DIR/network_configs/$NETWORK_ISOLATION/env_settings.yml \
|
|
--extra-vars $VARS \
|
|
$VIRTHOST
|