1cda8e0e06
The barbican-tempest-plugin should be installed through the gate configuration rather than when barbican devstack plugin is enabled. Removes some of the changes added in I376d58cad9a33dc90afdd0bf01e1e73bdd5a8b28 Co-Authored-By: Brianna Poulos <Brianna.Poulos@jhuapl.edu> Depends-On: Ibef3f9a135f14727bf57c29e766f838d7da56c68 Change-Id: I87bd021f08f381c5319ee7ffa08fb8026a22a16c
81 lines
2.6 KiB
Bash
81 lines
2.6 KiB
Bash
# Configure the needed tempest options
|
|
function configure_barbican_tempest() {
|
|
iniset $TEMPEST_CONFIG service_available barbican True
|
|
}
|
|
|
|
# check for service enabled
|
|
if is_service_enabled barbican; then
|
|
if [[ "$1" == "source" || "`type -t install_barbican`" != 'function' ]]; then
|
|
# Initial source
|
|
source $BARBICAN_DIR/devstack/lib/barbican
|
|
fi
|
|
|
|
if [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
echo_summary "Installing Barbican"
|
|
install_barbican
|
|
install_barbicanclient
|
|
if is_service_enabled barbican-pykmip; then
|
|
echo_summary "Installing PyKMIP"
|
|
install_pykmip
|
|
fi
|
|
if is_service_enabled barbican-dogtag; then
|
|
echo_summary "Installing Dogtag"
|
|
install_dogtag_components
|
|
fi
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
echo_summary "Configuring Barbican"
|
|
configure_barbican
|
|
if is_service_enabled barbican-pykmip; then
|
|
echo_summary "Configuring KMIP plugin"
|
|
configure_pykmip
|
|
fi
|
|
if is_service_enabled barbican-dogtag; then
|
|
echo_summary "Configuring Dogtag plugin"
|
|
configure_dogtag_plugin
|
|
fi
|
|
configure_barbicanclient
|
|
|
|
# Configure Cinder, Nova and Glance to use Barbican
|
|
configure_core_services
|
|
|
|
if is_service_enabled key; then
|
|
create_barbican_accounts
|
|
fi
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
echo_summary "Initializing Barbican"
|
|
init_barbican
|
|
if is_service_enabled tempest; then
|
|
echo_summary "Configuring Tempest options for Barbican"
|
|
configure_barbican_tempest
|
|
fi
|
|
start_barbican
|
|
if is_service_enabled pykmip-server; then
|
|
echo_summary "Starting PyKMIP server"
|
|
start_pykmip
|
|
fi
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
stop_barbican
|
|
fi
|
|
|
|
if [[ "$1" == "clean" ]]; then
|
|
cleanup_barbican
|
|
fi
|
|
fi
|
|
|
|
# Set the correct config options in Nova, Cinder and Glance
|
|
function configure_core_services {
|
|
if is_service_enabled n-cpu; then
|
|
iniset $NOVA_CONF key_manager api_class 'castellan.key_manager.barbican_key_manager.BarbicanKeyManager'
|
|
fi
|
|
|
|
if is_service_enabled c-vol; then
|
|
iniset $CINDER_CONF key_manager api_class 'castellan.key_manager.barbican_key_manager.BarbicanKeyManager'
|
|
fi
|
|
|
|
if is_service_enabled g-api; then
|
|
iniset $GLANCE_API_CONF key_manager api_class 'castellan.key_manager.barbican_key_manager.BarbicanKeyManager'
|
|
fi
|
|
}
|