Merge "quota: Default network quotas to not force"
This commit is contained in:
commit
692b06dfd5
openstackclient
releasenotes/notes
@ -20,6 +20,7 @@ import logging
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
|
|
||||||
from openstackclient.i18n import _
|
from openstackclient.i18n import _
|
||||||
@ -506,22 +507,19 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
'--force',
|
'--force',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
dest='force',
|
dest='force',
|
||||||
# TODO(stephenfin): Change the default to False in Z or later
|
default=False,
|
||||||
default=None,
|
|
||||||
help=_(
|
help=_(
|
||||||
'Force quota update (only supported by compute and network) '
|
'Force quota update (only supported by compute and network)'
|
||||||
'(default for network)'
|
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
force_group.add_argument(
|
force_group.add_argument(
|
||||||
'--no-force',
|
'--no-force',
|
||||||
action='store_false',
|
action='store_false',
|
||||||
dest='force',
|
dest='force',
|
||||||
default=None,
|
default=False,
|
||||||
help=_(
|
help=_(
|
||||||
'Do not force quota update '
|
'Do not force quota update '
|
||||||
'(only supported by compute and network) '
|
'(only supported by compute and network) (default)'
|
||||||
'(default for compute)'
|
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
# kept here for backwards compatibility/to keep the neutron folks happy
|
# kept here for backwards compatibility/to keep the neutron folks happy
|
||||||
@ -529,7 +527,7 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
'--check-limit',
|
'--check-limit',
|
||||||
action='store_false',
|
action='store_false',
|
||||||
dest='force',
|
dest='force',
|
||||||
default=None,
|
default=False,
|
||||||
help=argparse.SUPPRESS,
|
help=argparse.SUPPRESS,
|
||||||
)
|
)
|
||||||
return parser
|
return parser
|
||||||
@ -545,6 +543,12 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
)
|
)
|
||||||
self.log.warning(msg)
|
self.log.warning(msg)
|
||||||
|
|
||||||
|
if (
|
||||||
|
parsed_args.quota_class or parsed_args.default
|
||||||
|
) and parsed_args.force:
|
||||||
|
msg = _('--force cannot be used with --class or --default')
|
||||||
|
raise exceptions.CommandError(msg)
|
||||||
|
|
||||||
compute_client = self.app.client_manager.compute
|
compute_client = self.app.client_manager.compute
|
||||||
volume_client = self.app.client_manager.volume
|
volume_client = self.app.client_manager.volume
|
||||||
|
|
||||||
@ -554,7 +558,7 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
if value is not None:
|
if value is not None:
|
||||||
compute_kwargs[k] = value
|
compute_kwargs[k] = value
|
||||||
|
|
||||||
if parsed_args.force is not None:
|
if parsed_args.force is True:
|
||||||
compute_kwargs['force'] = parsed_args.force
|
compute_kwargs['force'] = parsed_args.force
|
||||||
|
|
||||||
volume_kwargs = {}
|
volume_kwargs = {}
|
||||||
@ -566,22 +570,6 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
volume_kwargs[k] = value
|
volume_kwargs[k] = value
|
||||||
|
|
||||||
network_kwargs = {}
|
network_kwargs = {}
|
||||||
if parsed_args.force is True:
|
|
||||||
# Unlike compute, network doesn't provide a simple boolean option.
|
|
||||||
# Instead, it provides two options: 'force' and 'check_limit'
|
|
||||||
# (a.k.a. 'not force')
|
|
||||||
network_kwargs['force'] = True
|
|
||||||
elif parsed_args.force is False:
|
|
||||||
network_kwargs['check_limit'] = True
|
|
||||||
else:
|
|
||||||
msg = _(
|
|
||||||
"This command currently defaults to '--force' when modifying "
|
|
||||||
"network quotas. This behavior will change in a future "
|
|
||||||
"release. Consider explicitly providing '--force' or "
|
|
||||||
"'--no-force' options to avoid changes in behavior."
|
|
||||||
)
|
|
||||||
self.log.warning(msg)
|
|
||||||
|
|
||||||
if self.app.client_manager.is_network_endpoint_enabled():
|
if self.app.client_manager.is_network_endpoint_enabled():
|
||||||
for k, v in NETWORK_QUOTAS.items():
|
for k, v in NETWORK_QUOTAS.items():
|
||||||
value = getattr(parsed_args, k, None)
|
value = getattr(parsed_args, k, None)
|
||||||
@ -593,6 +581,15 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
if value is not None:
|
if value is not None:
|
||||||
compute_kwargs[k] = value
|
compute_kwargs[k] = value
|
||||||
|
|
||||||
|
if network_kwargs:
|
||||||
|
if parsed_args.force is True:
|
||||||
|
# Unlike compute, network doesn't provide a simple boolean
|
||||||
|
# option. Instead, it provides two options: 'force' and
|
||||||
|
# 'check_limit' (a.k.a. 'not force')
|
||||||
|
network_kwargs['force'] = True
|
||||||
|
else:
|
||||||
|
network_kwargs['check_limit'] = True
|
||||||
|
|
||||||
if parsed_args.quota_class or parsed_args.default:
|
if parsed_args.quota_class or parsed_args.default:
|
||||||
if compute_kwargs:
|
if compute_kwargs:
|
||||||
compute_client.quota_classes.update(
|
compute_client.quota_classes.update(
|
||||||
|
@ -137,7 +137,7 @@ class QuotaTests(base.TestCase):
|
|||||||
def _restore_quota_limit(self, resource, limit, project):
|
def _restore_quota_limit(self, resource, limit, project):
|
||||||
self.openstack(f'quota set --{resource} {limit} {project}')
|
self.openstack(f'quota set --{resource} {limit} {project}')
|
||||||
|
|
||||||
def test_quota_set_network_with_no_force(self):
|
def test_quota_set_network(self):
|
||||||
if not self.haz_network:
|
if not self.haz_network:
|
||||||
self.skipTest('No Network service present')
|
self.skipTest('No Network service present')
|
||||||
if not self.is_extension_enabled('quota-check-limit'):
|
if not self.is_extension_enabled('quota-check-limit'):
|
||||||
@ -172,7 +172,7 @@ class QuotaTests(base.TestCase):
|
|||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
exceptions.CommandFailed,
|
exceptions.CommandFailed,
|
||||||
self.openstack,
|
self.openstack,
|
||||||
'quota set --networks 1 --no-force ' + self.PROJECT_NAME,
|
'quota set --networks 1 ' + self.PROJECT_NAME,
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_quota_set_network_with_force(self):
|
def test_quota_set_network_with_force(self):
|
||||||
|
@ -522,6 +522,7 @@ class TestQuotaSet(TestQuota):
|
|||||||
('security_groups', compute_fakes.secgroup_num),
|
('security_groups', compute_fakes.secgroup_num),
|
||||||
('server_groups', compute_fakes.servgroup_num),
|
('server_groups', compute_fakes.servgroup_num),
|
||||||
('server_group_members', compute_fakes.servgroup_members_num),
|
('server_group_members', compute_fakes.servgroup_members_num),
|
||||||
|
('force', False),
|
||||||
('project', self.projects[0].name),
|
('project', self.projects[0].name),
|
||||||
]
|
]
|
||||||
self.app.client_manager.network_endpoint_enabled = False
|
self.app.client_manager.network_endpoint_enabled = False
|
||||||
@ -682,12 +683,14 @@ class TestQuotaSet(TestQuota):
|
|||||||
('router', network_fakes.QUOTA['router']),
|
('router', network_fakes.QUOTA['router']),
|
||||||
('rbac_policy', network_fakes.QUOTA['rbac_policy']),
|
('rbac_policy', network_fakes.QUOTA['rbac_policy']),
|
||||||
('port', network_fakes.QUOTA['port']),
|
('port', network_fakes.QUOTA['port']),
|
||||||
|
('force', False),
|
||||||
('project', self.projects[0].name),
|
('project', self.projects[0].name),
|
||||||
]
|
]
|
||||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
result = self.cmd.take_action(parsed_args)
|
result = self.cmd.take_action(parsed_args)
|
||||||
kwargs = {
|
kwargs = {
|
||||||
|
'check_limit': True,
|
||||||
'subnet': network_fakes.QUOTA['subnet'],
|
'subnet': network_fakes.QUOTA['subnet'],
|
||||||
'network': network_fakes.QUOTA['network'],
|
'network': network_fakes.QUOTA['network'],
|
||||||
'floatingip': network_fakes.QUOTA['floatingip'],
|
'floatingip': network_fakes.QUOTA['floatingip'],
|
||||||
@ -948,7 +951,6 @@ class TestQuotaSet(TestQuota):
|
|||||||
|
|
||||||
kwargs_compute = {
|
kwargs_compute = {
|
||||||
'cores': compute_fakes.core_num,
|
'cores': compute_fakes.core_num,
|
||||||
'force': False,
|
|
||||||
}
|
}
|
||||||
kwargs_volume = {
|
kwargs_volume = {
|
||||||
'volumes': volume_fakes.QUOTA['volumes'],
|
'volumes': volume_fakes.QUOTA['volumes'],
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- The ``openstack quota set`` command previously defaulted to ``--force``
|
||||||
|
behavior for network quotas. This behavior has now changed and the command
|
||||||
|
now defaults to ``--no-force`` behavior. Users should specify the
|
||||||
|
``--force`` option if they wish to retain previous behavior.
|
Loading…
x
Reference in New Issue
Block a user