Merge "Security group rule delete broken"
This commit is contained in:
commit
04d1fc69cf
@ -35,6 +35,18 @@ List of Backwards Incompatible Changes
|
|||||||
* Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1404073
|
* Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1404073
|
||||||
* Commit: https://review.openstack.org/#/c/143242/
|
* Commit: https://review.openstack.org/#/c/143242/
|
||||||
|
|
||||||
|
3. Command `openstack security group rule delete` now requires rule id
|
||||||
|
|
||||||
|
Previously, the command was `openstack security group rule delete --proto
|
||||||
|
<proto> [--src-ip <ip-address> --dst-port <port-range>] <group>`,
|
||||||
|
whereas now it is: `openstack security group rule delete <rule>`.
|
||||||
|
|
||||||
|
* In favor of: Using `openstack security group rule delete <rule>`.
|
||||||
|
* As of: 1.2.1
|
||||||
|
* Removed in: NA
|
||||||
|
* Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1450872
|
||||||
|
* Commit: https://review.openstack.org/#/c/179446/
|
||||||
|
|
||||||
For Developers
|
For Developers
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
@ -328,28 +328,9 @@ class DeleteSecurityGroupRule(command.Command):
|
|||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(DeleteSecurityGroupRule, self).get_parser(prog_name)
|
parser = super(DeleteSecurityGroupRule, self).get_parser(prog_name)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'group',
|
'rule',
|
||||||
metavar='<group>',
|
metavar='<rule>',
|
||||||
help='Security group rule to delete (name or ID)',
|
help='Security group rule ID to delete',
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"--proto",
|
|
||||||
metavar="<proto>",
|
|
||||||
default="tcp",
|
|
||||||
help="IP protocol (icmp, tcp, udp; default: tcp)",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"--src-ip",
|
|
||||||
metavar="<ip-address>",
|
|
||||||
default="0.0.0.0/0",
|
|
||||||
help="Source IP (may use CIDR notation; default: 0.0.0.0/0)",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"--dst-port",
|
|
||||||
metavar="<port-range>",
|
|
||||||
action=parseractions.RangeAction,
|
|
||||||
help="Destination port, may be a range: 137:139 (default: 0; "
|
|
||||||
"only required for proto tcp and udp)",
|
|
||||||
)
|
)
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
@ -357,19 +338,7 @@ class DeleteSecurityGroupRule(command.Command):
|
|||||||
self.log.debug('take_action(%s)', parsed_args)
|
self.log.debug('take_action(%s)', parsed_args)
|
||||||
|
|
||||||
compute_client = self.app.client_manager.compute
|
compute_client = self.app.client_manager.compute
|
||||||
group = utils.find_resource(
|
compute_client.security_group_rules.delete(parsed_args.rule)
|
||||||
compute_client.security_groups,
|
|
||||||
parsed_args.group,
|
|
||||||
)
|
|
||||||
from_port, to_port = parsed_args.dst_port
|
|
||||||
# sigh...delete by ID?
|
|
||||||
compute_client.security_group_rules.delete(
|
|
||||||
group.id,
|
|
||||||
parsed_args.proto,
|
|
||||||
from_port,
|
|
||||||
to_port,
|
|
||||||
parsed_args.src_ip,
|
|
||||||
)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user