d0e9c50fd2
tenks-deploy.sh deploys a minimal virtualized baremetal test cluster locally. It also adds it to the overcloud-base CI job. To make the new CI job work, we need to configure the firewall on the test machine to allow the baremetal machines to communicate with the openstack services. Change-Id: I7487a2606cf0bac71c5c63db41b2b518a6f6398b Depends-On: https://review.openstack.org/#/c/615939 Depends-On: https://review.openstack.org/#/c/618003 Story: 2004297 Task: 27850
23 lines
446 B
Bash
Executable File
23 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Install kayobe and its dependencies in a virtual environment.
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${PARENT}/functions"
|
|
|
|
|
|
function main {
|
|
# Don't require kayobe configuration to exist for installation - it is not
|
|
# required for the legacy manual deployment procedure.
|
|
KAYOBE_CONFIG_REQUIRED=0
|
|
config_init
|
|
install_dependencies
|
|
install_kayobe_venv
|
|
}
|
|
|
|
main
|