ee8fa6deca
This change proposes to add Ironic-UI Devstack plugin. Change-Id: Ided8819c2ec9f8fbbbbf1d76a7ec41ae7717288a Closes-Bug: #1663840
46 lines
1.6 KiB
Bash
46 lines
1.6 KiB
Bash
# plugin.sh - DevStack plugin.sh dispatch script ironic-ui
|
|
|
|
function install_ironic_ui {
|
|
# NOTE(crushil): workaround for devstack bug: 1540328
|
|
# where devstack installs 'test-requirements' but should not do it
|
|
# for ironic-ui project as it installs Horizon from url.
|
|
# Remove following two 'mv' commands when mentioned bug is fixed.
|
|
mv $IRONIC_UI_DIR/test-requirements.txt $IRONIC_UI_DIR/_test-requirements.txt
|
|
|
|
setup_develop ${IRONIC_UI_DIR}
|
|
|
|
mv $IRONIC_UI_DIR/_test-requirements.txt $IRONIC_UI_DIR/test-requirements.txt
|
|
}
|
|
|
|
# check for service enabled
|
|
if is_service_enabled horizon && is_service_enabled ironic && is_service_enabled ironic-ui; then
|
|
|
|
if [[ "$1" == "stack" && "$2" == "pre-install" ]]; then
|
|
# Set up system services
|
|
# no-op
|
|
:
|
|
elif [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
# Perform installation of service source
|
|
echo_summary "Installing Ironic UI"
|
|
install_ironic_ui
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
# Configure after the other layer 1 and 2 services have been configured
|
|
echo_summary "Configuring Ironic UI"
|
|
cp -a ${IRONIC_UI_DIR}/ironic_ui/enabled/* ${DEST}/horizon/openstack_dashboard/local/enabled/
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
# no-op
|
|
:
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
# no-op
|
|
:
|
|
fi
|
|
|
|
if [[ "$1" == "clean" ]]; then
|
|
# Remove state and transient data
|
|
# Remember clean.sh first calls unstack.sh
|
|
# no-op
|
|
:
|
|
fi
|
|
fi |