26b8026cee
A security group rule where port_range_min:port_range_max is 1:65535 is specifying all ports, but it is not optimal for backends to try and implement this potentially large rule. Since it is essentially the entire port range, change min:max to be None, making the rule specify the entire protocol instead. Change-Id: Iff22e2fc84d679e20a5a04b8516750c6ea949078 Closes-bug: #1848213
11 lines
418 B
YAML
11 lines
418 B
YAML
---
|
|
upgrade:
|
|
- |
|
|
A security group rule added for the entire port range, for example,
|
|
TCP ports 1-65535, is not optimal for backends that implement the
|
|
rule. Rules like this will now automatically be converted to apply
|
|
to the procotol itself, in other words, all TCP - the port ranges
|
|
will be ignored.
|
|
See bug `1848213 <https://bugs.launchpad.net/neutron/+bug/1848213>`_
|
|
for more details.
|