3d7a0c6f55
So we can respect DRY and share as much code as possible I have broken out the common code between the aio and multinode gate scripts. Additionally, this lays the ground work for removing our policy on root-everywhere by using sudo. Once we get the non-root stuff worked out we can gate as non-root user. Change-Id: I781c597ab10f2296b95f51ae27e0fa617ffe0a66 Partially-Implements: blueprint multinode-gate
37 lines
804 B
Bash
Executable File
37 lines
804 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
|
|
function print_failure {
|
|
docker ps -a
|
|
docker logs bootstrap_keystone
|
|
echo "FAILED"
|
|
exit 1
|
|
}
|
|
|
|
# Populate globals.yml
|
|
cat << EOF > /etc/kolla/globals.yml
|
|
---
|
|
kolla_base_distro: "$1"
|
|
kolla_install_type: "$2"
|
|
kolla_internal_address: "169.254.169.10"
|
|
docker_pull_policy: "missing"
|
|
docker_restart_policy: "no"
|
|
network_interface: "eth0"
|
|
neutron_external_interface: "fake_interface"
|
|
EOF
|
|
|
|
# Create dummy interface for neutron
|
|
ip l a fake_interface type dummy
|
|
|
|
# Actually do the deployment
|
|
tools/kolla-ansible deploy || print_failure
|
|
|
|
# TODO(SamYaple): Actually validate that all containers are started
|
|
docker ps -a
|
|
|
|
# TODO(SamYaple): Actually do functional testing of OpenStack
|