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.
19 lines
293 B
Bash
Executable File
19 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Simple script to stand up a development environment for a seed VM using
|
|
# kayobe. This should be executed from the hypervisor.
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source ${PARENT}/functions
|
|
|
|
|
|
function main {
|
|
config_init
|
|
seed_deploy
|
|
}
|
|
|
|
main
|