Skip to content
Snippets Groups Projects
setup_gate.sh 3.23 KiB
Newer Older
#!/bin/bash

set -o xtrace
set -o errexit

# Enable unbuffered output for Ansible in Jenkins.
export PYTHONUNBUFFERED=1

GIT_PROJECT_DIR=$(mktemp -d)

function setup_openstack_clients {
    # Prepare virtualenv for openstack deployment tests
    if [[ "debian" == $BASE_DISTRO ]]; then
        sudo apt -y install python3-venv
    fi
    python3 -m venv ~/openstackclient-venv
    ~/openstackclient-venv/bin/pip install -U pip
    ~/openstackclient-venv/bin/pip install python-openstackclient
    ~/openstackclient-venv/bin/pip install python-heatclient
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == zun ]]; then
        ~/openstackclient-venv/bin/pip install python-zunclient
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == ironic ]]; then
        ~/openstackclient-venv/bin/pip install python-ironicclient
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == masakari ]]; then
        ~/openstackclient-venv/bin/pip install python-masakariclient
    fi
function setup_config {
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO != "bifrost" ]]; then
        GATE_IMAGES="cron,fluentd,glance,haproxy,keepalived,keystone,kolla-toolbox,mariadb,memcached,neutron,nova,openvswitch,rabbitmq,horizon,chrony,heat,placement"
    else
        GATE_IMAGES="bifrost"
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "ceph" ]]; then
        GATE_IMAGES+=",ceph,cinder"
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "cinder-lvm" ]]; then
Mark Goddard's avatar
Mark Goddard committed
        GATE_IMAGES+=",cinder,iscsid,tgtd"
    fi

Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "zun" ]]; then
        GATE_IMAGES+=",zun,kuryr,etcd,cinder,iscsid,tgtd"
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "scenario_nfv" ]]; then
        GATE_IMAGES+=",tacker,mistral,redis,barbican"
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "ironic" ]]; then
Mark Goddard's avatar
Mark Goddard committed
        GATE_IMAGES+=",dnsmasq,ironic,iscsid"
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "masakari" ]]; then
        GATE_IMAGES+=",masakari"
    fi
Radosław Piliszek's avatar
Radosław Piliszek committed
    if [[ $SCENARIO == "mariadb" ]]; then
Mark Goddard's avatar
Mark Goddard committed
        GATE_IMAGES="cron,haproxy,keepalived,kolla-toolbox,mariadb"
    fi

    # NOTE(yoctozepto): we cannot build and push at the same time on debian
    # buster see https://github.com/docker/for-linux/issues/711.
    PUSH="true"
    if [[ "debian" == $BASE_DISTRO ]]; then
        PUSH="false"
    fi
Jeffrey Zhang's avatar
Jeffrey Zhang committed
    cat <<EOF | sudo tee /etc/kolla/kolla-build.conf
[DEFAULT]
namespace = lokolla
base = ${BASE_DISTRO}
install_type = ${INSTALL_TYPE}
tag = ${TAG}
profile = gate
registry = 127.0.0.1:4000
logs_dir = /tmp/logs/build
template_override = /etc/kolla/template_overrides.j2
gate = ${GATE_IMAGES}
Jeffrey Zhang's avatar
Jeffrey Zhang committed
EOF
Mark Goddard's avatar
Mark Goddard committed
    mkdir -p /tmp/logs/build
function prepare_images {
    if [[ "${BUILD_IMAGE}" == "False" ]]; then
        return
    sudo docker run -d -p 4000:5000 --restart=always -v /opt/kolla_registry/:/var/lib/registry --name registry registry:2
    pushd "${KOLLA_SRC_DIR}"
    sudo tox -e "build-${BASE_DISTRO}-${INSTALL_TYPE}"
    # NOTE(yoctozepto): due to debian buster we push after images are built
    # see https://github.com/docker/for-linux/issues/711
    if [[ "debian" == $BASE_DISTRO ]]; then
        for img in $(sudo docker image ls --format '{{ .Repository }}:{{ .Tag }}' | grep lokolla/); do
            sudo docker push $img;
        done
    fi
setup_openstack_clients

RAW_INVENTORY=/etc/kolla/inventory
tools/kolla-ansible -i ${RAW_INVENTORY} -e ansible_user=$USER -vvv bootstrap-servers &> /tmp/logs/ansible/bootstrap-servers
prepare_images