neutron: allow creation of ovs bridges with no ports

it's valid to create a bridge and not add ports; this restores that
ability

Change-Id: I46881fe3ee48a56a796abe8cf2036eba9e4064e1
This commit is contained in:
Chris Wedgwood 2018-03-15 18:48:55 +00:00
parent 0c7b6e01a3
commit 8591b1c0c2

View File

@ -32,8 +32,10 @@ timeout 3m neutron-sanity-check --config-file /etc/neutron/neutron.conf --config
# handle any bridge mappings
{{- range $bridge, $port := .Values.network.auto_bridge_add }}
ovs-vsctl --no-wait --may-exist add-br {{ $bridge }}
{{ if $port }}
ovs-vsctl --no-wait --may-exist add-port {{ $bridge }} {{ $port }}
ip link set dev {{ $port }} up
{{ end }}
{{- end }}
tunnel_interface="{{- .Values.network.interface.tunnel -}}"