#!/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_config { # Use Infra provided pypi. # Wheel package mirror may be not compatible. So do not enable it. PIP_CONF=$(mktemp) cat > ${PIP_CONF} < /etc/pip.conf" | sudo tee /etc/kolla/header rm ${PIP_CONF} if [[ $ACTION != "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 if [[ $ACTION =~ "ceph" ]]; then GATE_IMAGES+=",ceph,cinder" fi if [[ $ACTION == "cinder-lvm" ]]; then GATE_IMAGES+=",cinder,iscsid,tgtd" fi if [[ $ACTION == "zun" ]]; then GATE_IMAGES+=",zun,kuryr,etcd" fi if [[ $ACTION == "scenario_nfv" ]]; then GATE_IMAGES+=",tacker,mistral,redis,barbican" fi if [[ $ACTION == "ironic" ]]; then GATE_IMAGES+=",dnsmasq,ironic,iscsid" fi cat < /etc/apt/apt.conf" | sudo tee -a /etc/kolla/header # Optimize the repos to take advantage of the Infra provided mirrors for Ubuntu cat << EOF | sudo tee -a /etc/kolla/kolla-build.conf apt_sources_list = /etc/kolla/sources.list EOF sudo cp /etc/apt/sources.list /etc/kolla/sources.list sudo cat /etc/apt/sources.list.available.d/ubuntu-cloud-archive-pike.list | sudo tee -a /etc/kolla/sources.list # Append non-infra provided repos to list cat << EOF | sudo tee -a /etc/kolla/sources.list deb http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.0/ubuntu xenial main deb http://repo.percona.com/apt xenial main deb http://packages.elastic.co/elasticsearch/2.x/debian stable main deb http://packages.elastic.co/kibana/4.6/debian stable main EOF fi } function detect_distro { DISTRO=$(ansible all -i "localhost," -msetup -clocal | awk -F\" '/ansible_os_family/ {print $4}') } function setup_ansible { RAW_INVENTORY=/etc/kolla/inventory # TODO(SamYaple): Move to virtualenv sudo -H pip install -U "ansible>=2.5" "docker>=2.0.0" "python-openstackclient" "ara<1.0.0" "cmd2<0.9.0" if [[ $ACTION == "zun" ]]; then sudo -H pip install -U "python-zunclient" fi if [[ $ACTION == ironic ]]; then # NOTE(mgoddard): Installing python-ironicclient to site-packages fails # due to pip 10 distutils issue with ipaddress package. virtualenv ~/ironic-venv ~/ironic-venv/bin/pip install -U pip ~/ironic-venv/bin/pip install python-openstackclient python-ironicclient fi detect_distro sudo mkdir /etc/ansible ara_location=$(python -m ara.setup.callback_plugins) sudo tee /etc/ansible/ansible.cfg< /tmp/logs/ansible/initial-setup } function setup_node { ansible-playbook -i ${RAW_INVENTORY} -e ansible_user=$USER tools/playbook-setup-nodes.yml } function prepare_images { if [[ "${BUILD_IMAGE}" == "False" ]]; then return fi 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}" popd } setup_ansible setup_config setup_node tools/kolla-ansible -i ${RAW_INVENTORY} -e ansible_user=$USER bootstrap-servers > /tmp/logs/ansible/bootstrap-servers prepare_images