Merge "Rehome functions to enable Neutron's placement integration"

This commit is contained in:
Zuul 2021-11-13 19:02:48 +00:00 committed by Gerrit Code Review
commit 483e7e243a
2 changed files with 25 additions and 0 deletions

View File

@ -277,6 +277,7 @@ source $TOP_DIR/lib/neutron_plugins/services/metering
source $TOP_DIR/lib/neutron_plugins/services/l3
# Additional Neutron service plugins
source $TOP_DIR/lib/neutron_plugins/services/placement
source $TOP_DIR/lib/neutron_plugins/services/trunk
# Use security group or not
@ -374,6 +375,9 @@ function configure_mutnauq {
fi
# Configure Neutron's advanced services
if is_service_enabled q-placement neutron-placement; then
configure_placement_extension
fi
if is_service_enabled q-trunk neutron-trunk; then
configure_trunk_extension
fi

View File

@ -0,0 +1,21 @@
#!/bin/bash
function configure_placement_service_plugin {
neutron_service_plugin_class_add "placement"
}
function configure_placement_neutron {
iniset $NEUTRON_CONF placement auth_type "$NEUTRON_PLACEMENT_AUTH_TYPE"
iniset $NEUTRON_CONF placement auth_url "$KEYSTONE_SERVICE_URI"
iniset $NEUTRON_CONF placement username "$NEUTRON_PLACEMENT_USERNAME"
iniset $NEUTRON_CONF placement password "$SERVICE_PASSWORD"
iniset $NEUTRON_CONF placement user_domain_name "$SERVICE_DOMAIN_NAME"
iniset $NEUTRON_CONF placement project_name "$SERVICE_TENANT_NAME"
iniset $NEUTRON_CONF placement project_domain_name "$SERVICE_DOMAIN_NAME"
iniset $NEUTRON_CONF placement region_name "$REGION_NAME"
}
function configure_placement_extension {
configure_placement_service_plugin
configure_placement_neutron
}