
This is a very preliminary version of a new APIC mechanism driver utilizing the ACI Integration Module (AIM) library concurrently being developed. A corresponding extension driver exposes details regarding the mapping of the Neutron resources to APIC. These drivers require the Ml2Plus extended driver APIs. See the apic-aim-ml2-driver devref for implementation details and for devstack configuration instructions. Change-Id: I82df32f0880d6a0d53b305f6c6391fcbea049d1b
14 lines
513 B
Plaintext
Executable File
14 lines
513 B
Plaintext
Executable File
NEUTRON_CREATE_INITIAL_NETWORKS="False"
|
|
|
|
ENABLE_APIC_AIM=${ENABLE_APIC_AIM:-False}
|
|
|
|
if [[ $ENABLE_APIC_AIM = True ]]; then
|
|
echo_summary "Overriding defaults for apic_aim"
|
|
|
|
Q_PLUGIN=${Q_PLUGIN:-ml2}
|
|
Q_ML2_TENANT_NETWORK_TYPE=${Q_ML2_TENANT_NETWORK_TYPE:-opflex}
|
|
Q_ML2_PLUGIN_TYPE_DRIVERS=${Q_ML2_PLUGIN_TYPE_DRIVERS:-local,vlan,opflex}
|
|
Q_ML2_PLUGIN_MECHANISM_DRIVERS=${Q_ML2_PLUGIN_MECHANISM_DRIVERS:-apic_aim}
|
|
Q_ML2_PLUGIN_EXT_DRIVERS=${Q_ML2_PLUGIN_EXT_DRIVERS-apic_aim,port_security}
|
|
fi
|