Introduce scope_types in migrate server

oslo.policy introduced the scope_type feature which can
control the access level at system-level and project-level.
 - https://docs.openstack.org/oslo.policy/latest/user/usage.html#setting-scope
 - http://specs.openstack.org/openstack/keystone-specs/specs/keystone/queens/system-scope.html

Appropriate scope_type for nova case:
- https://specs.openstack.org/openstack/nova-specs/specs/ussuri/approved/policy-defaults-refresh.html#scope

This commit introduce scope_type for migrate server API policies
as 'system'.

Also adds the test case with scope_type enabled and verify we
pass and fail the policy check with expected context.

Partial implement blueprint policy-defaults-refresh

Change-Id: Icba4c14f240215fd56f1cdd9814cc81ebf2796be
This commit is contained in:
Ghanshyam Mann
2020-03-30 23:47:13 -05:00
parent 9d98d8b1a4
commit 6c6d7e3dc2
+12 -10
View File
@@ -23,25 +23,27 @@ POLICY_ROOT = 'os_compute_api:os-migrate-server:%s'
migrate_server_policies = [
policy.DocumentedRuleDefault(
POLICY_ROOT % 'migrate',
base.RULE_ADMIN_API,
"Cold migrate a server to a host",
[
name=POLICY_ROOT % 'migrate',
check_str=base.RULE_ADMIN_API,
description="Cold migrate a server to a host",
operations=[
{
'method': 'POST',
'path': '/servers/{server_id}/action (migrate)'
}
]),
],
scope_types=['system', 'project']),
policy.DocumentedRuleDefault(
POLICY_ROOT % 'migrate_live',
base.RULE_ADMIN_API,
"Live migrate a server to a new host without a reboot",
[
name=POLICY_ROOT % 'migrate_live',
check_str=base.RULE_ADMIN_API,
description="Live migrate a server to a new host without a reboot",
operations=[
{
'method': 'POST',
'path': '/servers/{server_id}/action (os-migrateLive)'
}
]),
],
scope_types=['system', 'project']),
]