Compare commits
11 Commits
stable/202
...
11.8.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7c085005d | ||
|
|
d9a3518f75 | ||
|
|
efa0ccb944 | ||
|
|
8f72d77812 | ||
|
|
a991ac87c7 | ||
| 01d0553ca4 | |||
|
|
66ccb4569d | ||
|
|
1aee34b246 | ||
|
|
01ffc4684a | ||
| 2f170ce6aa | |||
|
|
275924ecc8 |
@@ -31,7 +31,6 @@
|
||||
- openstack/keystoneauth
|
||||
- openstack/neutron
|
||||
- openstack/neutron-lib
|
||||
- openstack/os-client-config
|
||||
- openstack/python-cinderclient
|
||||
- openstack/python-glanceclient
|
||||
- openstack/python-ironicclient
|
||||
|
||||
@@ -86,9 +86,12 @@ def _get_common_parser(parser):
|
||||
help=_('Description of the firewall rule'))
|
||||
parser.add_argument(
|
||||
'--protocol',
|
||||
choices=['tcp', 'udp', 'icmp', 'any'],
|
||||
type=nc_utils.convert_to_lowercase,
|
||||
help=_('Protocol for the firewall rule'))
|
||||
help=_('IP protocol (ah, dccp, egp, esp, gre, icmp, igmp, '
|
||||
'ipv6-encap, ipv6-frag, ipv6-icmp, ipv6-nonxt, ipv6-opts, '
|
||||
'ipv6-route, ospf, pgm, rsvp, sctp, tcp, udp, udplite, '
|
||||
'vrrp and integer representations [0-255] or any; '
|
||||
'default: any (all protocols))'))
|
||||
parser.add_argument(
|
||||
'--action',
|
||||
choices=['allow', 'deny', 'reject'],
|
||||
|
||||
@@ -850,7 +850,7 @@ class Client(ClientBase):
|
||||
|
||||
def list_port_bindings(self, port_id, retrieve_all=True, **_params):
|
||||
"""Fetches a list of all bindings for a certain port."""
|
||||
return self.list('port_bindings', self.port_bindings_path % port_id,
|
||||
return self.list('bindings', self.port_bindings_path % port_id,
|
||||
retrieve_all, **_params)
|
||||
|
||||
def activate_port_binding(self, port_id, host_id):
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
===========================
|
||||
|
||||
.. release-notes::
|
||||
:branch: stable/2024.1
|
||||
:branch: unmaintained/2024.1
|
||||
|
||||
6
releasenotes/source/2025.2.rst
Normal file
6
releasenotes/source/2025.2.rst
Normal file
@@ -0,0 +1,6 @@
|
||||
===========================
|
||||
2025.2 Series Release Notes
|
||||
===========================
|
||||
|
||||
.. release-notes::
|
||||
:branch: stable/2025.2
|
||||
@@ -6,6 +6,7 @@
|
||||
:maxdepth: 1
|
||||
|
||||
unreleased
|
||||
2025.2
|
||||
2025.1
|
||||
2024.2
|
||||
2024.1
|
||||
|
||||
@@ -11,7 +11,6 @@ oslo.i18n>=3.15.3 # Apache-2.0
|
||||
oslo.log>=3.36.0 # Apache-2.0
|
||||
oslo.serialization!=2.19.1,>=2.18.0 # Apache-2.0
|
||||
oslo.utils>=3.33.0 # Apache-2.0
|
||||
os-client-config>=1.28.0 # Apache-2.0
|
||||
keystoneauth1>=3.8.0 # Apache-2.0
|
||||
# keystoneclient is used only by neutronclient.osc.utils
|
||||
# TODO(amotoki): Drop this after osc.utils has no dependency on keystoneclient
|
||||
|
||||
@@ -3,7 +3,7 @@ hacking>=6.1.0,<6.2.0 # Apache-2.0
|
||||
bandit!=1.6.0,>=1.1.0 # Apache-2.0
|
||||
coverage!=4.4,>=4.0 # Apache-2.0
|
||||
fixtures>=3.0.0 # Apache-2.0/BSD
|
||||
flake8-import-order>=0.18.0,<0.19.0 # LGPLv3
|
||||
flake8-import-order>=0.19.0,<0.20.0 # LGPLv3
|
||||
oslotest>=3.2.0 # Apache-2.0
|
||||
osprofiler>=2.3.0 # Apache-2.0
|
||||
python-openstackclient>=3.12.0 # Apache-2.0
|
||||
|
||||
Reference in New Issue
Block a user