root@control-01:/etc/neutron/plugins/ml2# cat ml2_conf.ini
[ml2]
type_drivers = flat,vlan,vxlan,local
tenant_network_types = vxlan,flat
mechanism_drivers = linuxbridge,l2population
extension_drivers = port_security
In the openstack-ansible user_variables file , I don't see any extension_drivers defined, can you please confirm the default extension drivers that will be activated if user_variables doesn't have any entry ml2 extension drivers entry.
Also if I just add below:
neutron_ml2_conf_ini_overrides:
ml2:
extension_drivers:
- port_security
- subnet_dns_publish_fixed_ip
And run `openstack-ansible os-neutron-install.yml --tags neutron-config'
Regards
Hey there,
Just a question, are you doing integration with Designate?
If the only thing you need to do is to enable the extensions, you can
do it by overriding ml2_conf.ini file like this:
neutron_ml2_conf_ini_overrides:
ml2:
extension_drivers:
- port_security
- qos
- dns
- subnet_dns_publish_fixed_ip
Please mention that you'd need to specify all extensions that are
currently present plus the one you want to add with such override, so
I'd suggest checking what extensions are enabled now and come up with
a list based on that.
After you can run `openstack-ansble os-neutron-install.yml --tags
neutron-config` (not 100% sure if that tag is working properly on
Victoria tbh as branch is not maintained for a while now).
Hope this helps.
пн, 11 нояб. 2024 г. в 12:39, Rambo Rambo <ram.ramb2412@gmail.com>:
>
> Hi Team
>
> I am running openstack-ansible Victoria release and would need to activate automatic dns records creation when a new instance is created.
> So, I am looking for the way to enable neutron plugin Subnet_dns_publish_fixed_ip.
> After which I can enable dns_publish_fixed_ip in the subnet properties
>
> Regards
> Rambo