b3880aa264
The following top level scripts are added under dev/: * overcloud-deploy.sh * seed-deploy.sh * seed-hypervisor-deploy.sh Some amount of configuration is possible via dev/config.sh.
22 lines
420 B
Bash
Executable File
22 lines
420 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# 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_venv
|
|
}
|
|
|
|
main
|