Config values in neutron.conf (Icehouse)
Hello,
If I run packstack
with
CONFIG_NEUTRON_L2_PLUGIN=ml2
The neutron.conf
generated, has:
core_plugin = neutron.plugins.ml2.plugin.Ml2Plugin
Whereas, the example in the neutron.conf
shows:
# Example: core_plugin = ml2
So, are both the types of configs supported (name vs Python module path) and valid, or only the one shown in the example is correct (just ml2
) ?
Same for service_plugins
, should I use lbaas,router
, or neutron.services.loadbalancer.plugin.LoadBalancerPlugin,neutron.services.l3_router.l3_router_plugin.L3RouterPlugin
Thanks.
Working values in neutron.conf :-
core_plugin = ml2
service_plugins = router
Well, what happens if you use one vs. the other? Do they both work? Does one generate an error?
I am not getting any error. But I wanted to know which is the correct form, if I have to use just the names, then I don't need to edit the answers file for
packstack
.