6ca65aba6c
Docker and docker-py can now be unpinned since Kolla has been converted to using the kolla_docker module and we no longer rely on upstream to unblock us. Change-Id: I6ee2b78c31ef0447da6154b75db381d5cdd55ab6 Partially-Implements: blueprint kolla-docker-module
38 lines
873 B
Bash
Executable File
38 lines
873 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
|
|
for failed in $(docker ps -a --format "{{.Names}}" --filter status=exited); do
|
|
docker logs --tail=all $failed
|
|
done
|
|
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_restart_policy: "never"
|
|
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
|