Skip to content

Commit

Permalink
feat(neutron): enable trunk plugin
Browse files Browse the repository at this point in the history
We want to be able to connect multiple networks to a physical port so we
will need to trunk these networks into the port and allow the server to
tag the traffic.
  • Loading branch information
micahculpepper authored and cardoe committed Jan 15, 2025
1 parent 5760fed commit 44319e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/neutron/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@ conf:
type_drivers: "vlan,local,understack_vxlan"
neutron:
DEFAULT:
# the 'trunk' plugin allows for us to create and configure trunk ports to allow
# multiple networks to be trunked into the node and let the node apply the VLAN
# the 'network_segment_range' plugin allows us to set the allowed VNIs or VLANs
# for a given network and let's OpenStack select one from the available pool. We
# are also able to see which ones are used from the OpenStack API.
service_plugins: "l3_understack,network_segment_range"
service_plugins: "l3_understack,trunk,network_segment_range"
# we don't want HA L3 routers. It's a Python value so we need to quote it in YAML.
l3_ha: "False"
# we aren't using availability zones so having calls attempt to add things to
Expand Down

0 comments on commit 44319e3

Please sign in to comment.