2015-02-04 15:51:06 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
## Shell Opts ----------------------------------------------------------------
|
2015-07-30 16:17:57 +01:00
|
|
|
set -e -u -x
|
2015-02-04 15:51:06 +00:00
|
|
|
|
|
|
|
## Variables -----------------------------------------------------------------
|
2017-03-02 15:24:35 +00:00
|
|
|
|
|
|
|
# Successerator: How many times do we try before failing
|
2015-07-17 10:00:06 -05:00
|
|
|
export MAX_RETRIES=${MAX_RETRIES:-"2"}
|
2017-03-02 15:24:35 +00:00
|
|
|
|
2015-03-05 15:35:52 -06:00
|
|
|
# tempest and testr options, default is to run tempest in serial
|
|
|
|
export TESTR_OPTS=${TESTR_OPTS:-''}
|
2017-03-02 15:24:35 +00:00
|
|
|
|
2015-12-01 15:41:32 +00:00
|
|
|
# Disable the python output buffering so that jenkins gets the output properly
|
|
|
|
export PYTHONUNBUFFERED=1
|
2017-03-02 15:24:35 +00:00
|
|
|
|
2015-12-01 15:41:32 +00:00
|
|
|
# Extra options to pass to the AIO bootstrap process
|
|
|
|
export BOOTSTRAP_OPTS=${BOOTSTRAP_OPTS:-''}
|
2017-03-02 15:24:35 +00:00
|
|
|
|
2017-03-07 17:49:13 +00:00
|
|
|
# Ensure the terminal type is set
|
|
|
|
export TERM=linux
|
|
|
|
|
2017-07-03 15:21:45 +01:00
|
|
|
# Store the clone repo root location
|
|
|
|
export OSA_CLONE_DIR="$(readlink -f $(dirname ${0})/..)"
|
|
|
|
|
2017-07-10 20:09:16 +01:00
|
|
|
# The directory in which the ansible logs will be placed
|
|
|
|
export ANSIBLE_LOG_DIR="/openstack/log/ansible-logging"
|
|
|
|
|
2016-09-13 15:19:24 +01:00
|
|
|
# Set the scenario to execute based on the first CLI parameter
|
2017-12-13 11:24:56 -06:00
|
|
|
export SCENARIO=${1:-"aio_lxc"}
|
2015-02-04 15:51:06 +00:00
|
|
|
|
2017-03-02 15:24:35 +00:00
|
|
|
# Set the action base on the second CLI parameter
|
|
|
|
# Actions available: [ 'deploy', 'upgrade' ]
|
|
|
|
export ACTION=${2:-"deploy"}
|
|
|
|
|
2018-07-03 07:04:36 +01:00
|
|
|
# Set the installation method for the OpenStack services
|
|
|
|
export INSTALL_METHOD=${3:-"source"}
|
|
|
|
|
2017-03-02 15:24:35 +00:00
|
|
|
# Set the source branch for upgrade tests
|
|
|
|
# Be sure to change this whenever a new stable branch
|
|
|
|
# is created. The checkout must always be N-1.
|
2018-08-31 10:03:02 +02:00
|
|
|
export UPGRADE_SOURCE_BRANCH=${UPGRADE_SOURCE_BRANCH:-'stable/rocky'}
|
2017-01-10 13:56:53 -05:00
|
|
|
|
2018-11-05 12:23:45 -06:00
|
|
|
# enable the ARA callback plugin
|
|
|
|
export SETUP_ARA=true
|
|
|
|
|
2017-07-21 11:10:09 +01:00
|
|
|
## Change branch for Upgrades ------------------------------------------------
|
2017-03-02 15:24:35 +00:00
|
|
|
# If the action is to upgrade, then store the current SHA,
|
|
|
|
# checkout the source SHA before executing the greenfield
|
|
|
|
# deployment.
|
2017-07-21 11:10:09 +01:00
|
|
|
# This needs to be done before the first "source" to ensure
|
|
|
|
# the correct functions are used for the branch.
|
2017-03-02 15:24:35 +00:00
|
|
|
if [[ "${ACTION}" == "upgrade" ]]; then
|
|
|
|
# Store the target SHA/branch
|
|
|
|
export UPGRADE_TARGET_BRANCH=$(git rev-parse HEAD)
|
2017-01-10 13:56:53 -05:00
|
|
|
|
2017-03-02 15:24:35 +00:00
|
|
|
# Now checkout the source SHA/branch
|
2017-11-24 11:53:17 +00:00
|
|
|
git checkout ${UPGRADE_SOURCE_BRANCH}
|
2017-01-10 13:56:53 -05:00
|
|
|
fi
|
|
|
|
|
2017-07-21 11:10:09 +01:00
|
|
|
## Functions -----------------------------------------------------------------
|
|
|
|
info_block "Checking for required libraries." 2> /dev/null || source "${OSA_CLONE_DIR}/scripts/scripts-library.sh"
|
|
|
|
|
|
|
|
## Main ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Log some data about the instance and the rest of the system
|
|
|
|
log_instance_info
|
|
|
|
|
2018-01-23 09:41:17 +00:00
|
|
|
run_dstat || true
|
2017-09-27 14:19:03 -05:00
|
|
|
|
2016-03-07 16:37:02 +00:00
|
|
|
# Get minimum disk size
|
2017-07-03 15:21:45 +01:00
|
|
|
DATA_DISK_MIN_SIZE="$((1024**3 * $(awk '/bootstrap_host_data_disk_min_size/{print $2}' "${OSA_CLONE_DIR}/tests/roles/bootstrap-host/defaults/main.yml") ))"
|
2016-03-07 16:37:02 +00:00
|
|
|
|
|
|
|
# Determine the largest secondary disk device that meets the minimum size
|
|
|
|
DATA_DISK_DEVICE=$(lsblk -brndo NAME,TYPE,RO,SIZE | awk '/d[b-z]+ disk 0/{ if ($4>m && $4>='$DATA_DISK_MIN_SIZE'){m=$4; d=$1}}; END{print d}')
|
2015-12-01 15:41:32 +00:00
|
|
|
|
|
|
|
# Only set the secondary disk device option if there is one
|
|
|
|
if [ -n "${DATA_DISK_DEVICE}" ]; then
|
|
|
|
export BOOTSTRAP_OPTS="${BOOTSTRAP_OPTS} bootstrap_host_data_disk_device=${DATA_DISK_DEVICE}"
|
|
|
|
fi
|
|
|
|
|
2018-02-23 17:34:41 +00:00
|
|
|
# If in OpenStack-Infra, set some vars to use the mirror when bootstrapping Ansible
|
|
|
|
if [[ -e /etc/ci/mirror_info.sh ]]; then
|
|
|
|
source /etc/ci/mirror_info.sh
|
|
|
|
export PIP_OPTS="--index-url ${NODEPOOL_PYPI_MIRROR} --trusted-host ${NODEPOOL_MIRROR_HOST} --extra-index-url ${NODEPOOL_WHEEL_MIRROR}"
|
|
|
|
fi
|
|
|
|
|
2015-12-01 15:41:32 +00:00
|
|
|
# Bootstrap Ansible
|
2017-07-03 15:21:45 +01:00
|
|
|
source "${OSA_CLONE_DIR}/scripts/bootstrap-ansible.sh"
|
2018-09-13 15:19:05 -06:00
|
|
|
|
2015-12-01 15:41:32 +00:00
|
|
|
# Flush all the iptables rules set by openstack-infra
|
|
|
|
iptables -F
|
|
|
|
iptables -X
|
|
|
|
iptables -t nat -F
|
|
|
|
iptables -t nat -X
|
|
|
|
iptables -t mangle -F
|
|
|
|
iptables -t mangle -X
|
|
|
|
iptables -P INPUT ACCEPT
|
|
|
|
iptables -P FORWARD ACCEPT
|
|
|
|
iptables -P OUTPUT ACCEPT
|
|
|
|
|
|
|
|
# Bootstrap an AIO
|
2018-08-16 09:16:51 +01:00
|
|
|
source "${OSA_CLONE_DIR}/scripts/bootstrap-aio.sh"
|
2015-11-25 15:46:19 +00:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
if [[ "${ACTION}" == "varstest" ]]; then
|
|
|
|
pushd "${OSA_CLONE_DIR}/tests"
|
|
|
|
openstack-ansible test-vars-overrides.yml
|
|
|
|
popd
|
|
|
|
else
|
|
|
|
pushd "${OSA_CLONE_DIR}/playbooks"
|
|
|
|
# Disable Ansible color output
|
|
|
|
export ANSIBLE_NOCOLOR=1
|
2015-11-25 15:46:19 +00:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Create ansible logging directory
|
|
|
|
mkdir -p ${ANSIBLE_LOG_DIR}
|
2015-11-25 15:46:19 +00:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Log some data about the instance and the rest of the system
|
|
|
|
log_instance_info
|
2015-08-07 10:44:07 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# First we gather facts about the hosts to populate the fact cache.
|
|
|
|
# We can't gather the facts for all hosts yet because the containers
|
|
|
|
# aren't built yet.
|
|
|
|
ansible -m setup -a 'gather_subset=network,hardware,virtual' hosts 2>${ANSIBLE_LOG_DIR}/facts-hosts.log
|
2015-08-20 10:33:52 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Prepare the hosts
|
|
|
|
export ANSIBLE_LOG_PATH="${ANSIBLE_LOG_DIR}/setup-hosts.log"
|
|
|
|
openstack-ansible setup-hosts.yml -e osa_gather_facts=False
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Log some data about the instance and the rest of the system
|
|
|
|
log_instance_info
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Once setup-hosts is complete, we should gather facts for everything
|
|
|
|
# (now including containers) so that the fact cache is complete for the
|
|
|
|
# remainder of the run.
|
|
|
|
ansible -m setup -a 'gather_subset=network,hardware,virtual' all 1>${ANSIBLE_LOG_DIR}/facts-all.log
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Prepare the infrastructure
|
|
|
|
export ANSIBLE_LOG_PATH="${ANSIBLE_LOG_DIR}/setup-infrastructure.log"
|
|
|
|
openstack-ansible setup-infrastructure.yml -e osa_gather_facts=False
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Log some data about the instance and the rest of the system
|
|
|
|
log_instance_info
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Setup OpenStack
|
|
|
|
export ANSIBLE_LOG_PATH="${ANSIBLE_LOG_DIR}/setup-openstack.log"
|
|
|
|
openstack-ansible setup-openstack.yml -e osa_gather_facts=False
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
# Log some data about the instance and the rest of the system
|
|
|
|
log_instance_info
|
2017-07-10 20:09:16 +01:00
|
|
|
|
2017-11-23 13:02:09 +00:00
|
|
|
popd
|
|
|
|
fi
|
2015-08-29 18:30:31 +01:00
|
|
|
|
2017-03-02 15:24:35 +00:00
|
|
|
# If the action is to upgrade, then checkout the original SHA for
|
|
|
|
# the checkout, and execute the upgrade.
|
|
|
|
if [[ "${ACTION}" == "upgrade" ]]; then
|
2017-01-10 13:56:53 -05:00
|
|
|
|
2017-03-02 15:24:35 +00:00
|
|
|
# Checkout the original HEAD we started with
|
|
|
|
git checkout ${UPGRADE_TARGET_BRANCH}
|
|
|
|
|
2017-04-23 01:12:27 -07:00
|
|
|
# Unset environment variables used by the bootstrap-ansible
|
|
|
|
# script to allow newer versions of Ansible and global
|
|
|
|
# requirements to be installed.
|
|
|
|
unset ANSIBLE_PACKAGE
|
|
|
|
unset UPPER_CONSTRAINTS_FILE
|
2018-02-23 17:34:41 +00:00
|
|
|
unset PIP_OPTS
|
|
|
|
|
|
|
|
# If in OpenStack-Infra, set some vars to use the mirror when bootstrapping Ansible
|
|
|
|
if [[ -e /etc/ci/mirror_info.sh ]]; then
|
|
|
|
source /etc/ci/mirror_info.sh
|
|
|
|
export PIP_OPTS="--index-url ${NODEPOOL_PYPI_MIRROR} --trusted-host ${NODEPOOL_MIRROR_HOST} --extra-index-url ${NODEPOOL_WHEEL_MIRROR}"
|
|
|
|
fi
|
2017-04-23 01:12:27 -07:00
|
|
|
|
2017-07-21 11:10:09 +01:00
|
|
|
# Source the current scripts-library.sh functions
|
|
|
|
source "${OSA_CLONE_DIR}/scripts/scripts-library.sh"
|
|
|
|
|
2017-03-08 11:47:32 +00:00
|
|
|
# To execute the upgrade script we need to provide
|
|
|
|
# an affirmative response to the warning that the
|
|
|
|
# upgrade is irreversable.
|
2017-07-03 15:21:45 +01:00
|
|
|
echo 'YES' | bash "${OSA_CLONE_DIR}/scripts/run-upgrade.sh"
|
2017-03-02 15:24:35 +00:00
|
|
|
|
2017-01-10 13:56:53 -05:00
|
|
|
fi
|
|
|
|
|
2015-02-14 10:06:50 -06:00
|
|
|
exit_success
|