summaryrefslogtreecommitdiffstats
path: root/etc/nova
diff options
context:
space:
mode:
authorKylin CG <kylin7.sg@gmail.com>2012-06-04 22:21:41 +0800
committerKylin CG <kylin7.sg@gmail.com>2012-08-06 23:55:22 +0800
commit391f345dfff174108e330de1ed4c7ed18f8ff923 (patch)
treef80dd112f40d94cdbb76b578a4b3b84c8915edef /etc/nova
parent51002f0d0f85f077bbbfed1d151df59240775ff8 (diff)
downloadnova-391f345dfff174108e330de1ed4c7ed18f8ff923.tar.gz
nova-391f345dfff174108e330de1ed4c7ed18f8ff923.tar.xz
nova-391f345dfff174108e330de1ed4c7ed18f8ff923.zip
Adds per-user-quotas support for more detailed quotas management
Implements blueprint per-user-quotas. Based on the original quotas structure. NOTE: quota_instances, quota_cores, quota_ram, quota_volumes, quota_gigabytes, quota_key_pairs and quota_security_groups are supported per user. Allow 'projectadmin' role to access the user quota setting methods. Add commands 'nova-manage quota project/user' for quotas management. Change-Id: I07a39499432571fedd819c53ae414240cefc3354
Diffstat (limited to 'etc/nova')
-rw-r--r--etc/nova/policy.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/nova/policy.json b/etc/nova/policy.json
index dc8ed5b8f..b0a20ee94 100644
--- a/etc/nova/policy.json
+++ b/etc/nova/policy.json
@@ -1,5 +1,6 @@
{
"admin_or_owner": [["role:admin"], ["project_id:%(project_id)s"]],
+ "admin_or_projectadmin": [["role:projectadmin"], ["role:admin"]],
"default": [["rule:admin_or_owner"]],
@@ -48,7 +49,8 @@
"compute_extension:networks": [["rule:admin_api"]],
"compute_extension:networks:view": [],
"compute_extension:quotas:show": [],
- "compute_extension:quotas:update": [["rule:admin_api"]],
+ "compute_extension:quotas:update_for_project": [["rule:admin_api"]],
+ "compute_extension:quotas:update_for_user": [["rule:admin_or_projectadmin"]],
"compute_extension:quota_classes": [],
"compute_extension:rescue": [],
"compute_extension:security_groups": [],