]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Add a privileged user for OpenStack services
authorAdrien Vergé <adrien.verge@numergy.com>
Tue, 28 Oct 2014 19:35:54 +0000 (20:35 +0100)
committerAdrien Vergé <adrien.verge@numergy.com>
Sat, 27 Dec 2014 14:23:20 +0000 (15:23 +0100)
commit04003d7c513ed4dd5129cbd5ad1af14a5b200677
tree16e237815aa61e98ed4d9426b933fb2e5f65084f
parent17c2f6857bf9cdad972238695b415b327a9e25d9
Add a privileged user for OpenStack services

Currently Cinder makes all requests to other services (Nova, Swift,
etc.) with current user context. Sometimes Cinder needs privileged
rights for external queries (e.g. asking Nova where an instance is
hosted); there is no way to do it yet.

This patch adds to ability to configure an account with special rights
in the configuration ('os_privileged_user_name',
'os_privileged_user_password' and 'os_privileged_user_tenant' options).
Then, requests that need special permissions can be achieved by creating
a client(privileged_user=True).

Note: This user does not necessarily need to have an admin role
associated with it. For instance, policies can be changed to allow a
specific user (without any roles) to perform special actions.

DocImpact: New configuration options to set a privileged user account
Change-Id: I61d8a6de1c5db5ee2ecce124997f9b6447b04e47
cinder/common/config.py
cinder/compute/nova.py
cinder/context.py
cinder/tests/compute/test_nova.py
cinder/tests/test_context.py