5133f09a0f
Add the base DevStack job and make sure bashate runs on the devstack plugin files. Begin to re-structure the plugin to match the common structure. Add devstack/build.sh and split out the build steps into separate functions in devstack/lib/stx-metal This is complete, further work to be done in follow-up changes. Change-Id: I05f6df758e18f182fb0a05731eddc6cb7f599e51 Signed-off-by: Dean Troyer <dtroyer@gmail.com>
43 lines
1.4 KiB
Bash
43 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
# devstack/plugin.sh
|
|
# Triggers stx-metal specific functions to install and configure stx-metal
|
|
|
|
echo_summary "Metal devstack plugin.sh called: $1/$2"
|
|
|
|
# check for service enabled
|
|
if is_service_enabled stx-metal; then
|
|
if [[ "$1" == "stack" && "$2" == "pre-install" ]]; then
|
|
# Pre-install requirties
|
|
echo_summary "Pre-requires of stx-metal"
|
|
elif [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
# Perform installation of source
|
|
echo_summary "Install stx-metal"
|
|
# maintenance components should be installed in each node
|
|
install_maintenance
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
# Configure after the other layer 1 and 2 services have been configured
|
|
echo_summary "Configure metal"
|
|
configure_maintenance
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
# Initialize and start the metal services
|
|
echo_summary "Initialize and start metal "
|
|
# Start services on each node
|
|
start_maintenance
|
|
elif [[ "$1" == "stack" && "$2" == "test" ]]; then
|
|
# do sanity test for metal
|
|
echo_summary "do test"
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
# Shut down metal services
|
|
echo_summary "Stop metal services"
|
|
# Stop client services on each node
|
|
stop_maintenance
|
|
fi
|
|
|
|
if [[ "$1" == "clean" ]]; then
|
|
cleanup_metal
|
|
fi
|
|
fi
|