
Install and configure murano-dashboard as part of devstack installation. Change-Id: I26fddee75b63e4ff57154b1e2c786196f5d14eaf
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
# murano.sh - DevStack extras script to install Murano
|
|
|
|
if is_service_enabled murano; then
|
|
if [[ "$1" == "source" ]]; then
|
|
# Initial source
|
|
source $TOP_DIR/lib/murano
|
|
if is_service_enabled horizon; then
|
|
source $TOP_DIR/lib/murano-dashboard
|
|
fi
|
|
elif [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
echo_summary "Installing Murano"
|
|
install_murano
|
|
if is_service_enabled horizon; then
|
|
install_murano_dashboard
|
|
fi
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
echo_summary "Configuring Murano"
|
|
configure_murano
|
|
create_murano_accounts
|
|
if is_service_enabled horizon; then
|
|
configure_murano_dashboard
|
|
fi
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
echo_summary "Initializing Murano"
|
|
init_murano
|
|
if is_service_enabled horizon; then
|
|
init_murano_dashboard
|
|
fi
|
|
start_murano
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
stop_murano
|
|
fi
|
|
fi
|