rally-openstack/rally
Mikhail Dubov 8621610146 Add support for user/admin permissions in endpoints
Instead of storing the endpoints as a single admin credentials dictionary
(containing the username, password etc.) we should be able to store several
endpoints which can be possibly returned from the deploy object, as well as
the information whether these endpoints have the admin permission or not.
If not, then the deployment is going to be used with the predefined set of
users (that will be implemented next). If there is an admin endpoint, then
the users for benchmarking will be generated (the "admin" role).
This information now gets stored in a dictionary of form:

    "endpoints": [
        {"username": ..., "password": ...,
         "tenant_name": ..., "auth_url": ..., "permission": "admin|user"},
        {"username": ..., "password": ...,
         "tenant_name": ..., "auth_url": ...,
         "permission": "admin|user"},
        ...
    ]

Blueprint benchmarking-with-predefined-users

Change-Id: If36e33e89daa036bd4b0d7db8e2d3b5b5b0f4aca
2014-02-14 01:19:22 +04:00
..
__init__.py Add rally.sample.conf to project 2013-08-14 14:08:09 +04:00
consts.py Add support for user/admin permissions in endpoints 2014-02-14 01:19:22 +04:00