
There is no need to have objects directory on the top level. They are quite rare changed and in most case one don’t need to know about internal details of it to fulfill their task. So hiding these directory under common/* makes perfect sense Change-Id: Id77bec4e417d61470c9adfd7e43cc50975d76775
150 lines
5.2 KiB
Python
150 lines
5.2 KiB
Python
# Copyright 2013: Mirantis Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from rally.common import objects
|
|
from rally import consts
|
|
from rally.deployment import engine
|
|
|
|
|
|
@engine.configure(name="ExistingCloud")
|
|
class ExistingCloud(engine.Engine):
|
|
"""Just use an existing OpenStack deployment without deploying anything.
|
|
|
|
To use ExistingCloud, you should put endpoint information to the config:
|
|
|
|
{
|
|
"type": "ExistingCloud",
|
|
"auth_url": "http://localhost:5000/v2.0/",
|
|
"region_name": "RegionOne",
|
|
"endpoint_type": "public",
|
|
"admin": {
|
|
"username": "admin",
|
|
"password": "password",
|
|
"tenant_name": "demo"
|
|
},
|
|
"https_insecure": False,
|
|
"https_cacert": "",
|
|
}
|
|
|
|
Or, using keystone v3 API endpoint:
|
|
|
|
{
|
|
"type": "ExistingCloud",
|
|
"auth_url": "http://localhost:5000/v3/",
|
|
"region_name": "RegionOne",
|
|
"endpoint_type": "public",
|
|
"admin": {
|
|
"username": "admin",
|
|
"password": "admin",
|
|
"user_domain_name": "admin",
|
|
"project_name": "admin",
|
|
"project_domain_name": "admin",
|
|
},
|
|
"https_insecure": False,
|
|
"https_cacert": "",
|
|
}
|
|
"""
|
|
|
|
CONFIG_SCHEMA = {
|
|
"type": "object",
|
|
|
|
"definitions": {
|
|
"user": {
|
|
"type": "object",
|
|
"properties": {
|
|
"username": {"type": "string"},
|
|
"password": {"type": "string"},
|
|
},
|
|
"oneOf": [
|
|
{
|
|
# v2.0 authentication
|
|
"properties": {
|
|
"tenant_name": {"type": "string"},
|
|
},
|
|
"required": ["username", "password", "tenant_name"],
|
|
},
|
|
{
|
|
# Authentication in project scope
|
|
"properties": {
|
|
"user_domain_name": {"type": "string"},
|
|
"project_name": {"type": "string"},
|
|
"project_domain_name": {"type": "string"},
|
|
},
|
|
"required": ["username", "password", "project_name"],
|
|
}
|
|
]
|
|
}
|
|
},
|
|
|
|
"properties": {
|
|
"type": {"type": "string"},
|
|
"auth_url": {"type": "string"},
|
|
"region_name": {"type": "string"},
|
|
"endpoint_type": {"type": "string",
|
|
"enum": [consts.EndpointType.ADMIN,
|
|
consts.EndpointType.INTERNAL,
|
|
consts.EndpointType.PUBLIC]},
|
|
"https_insecure": {"type": "boolean"},
|
|
"https_cacert": {"type": "string"},
|
|
},
|
|
"anyOf": [
|
|
{
|
|
"properties": {
|
|
"admin": {"$ref": "#/definitions/user"}
|
|
},
|
|
"required": ["type", "auth_url", "admin"]
|
|
},
|
|
{
|
|
"users": {
|
|
"type": "array",
|
|
"items": {"$ref": "#/definitions/user"}
|
|
},
|
|
"required": ["type", "auth_url", "users"]
|
|
}
|
|
]
|
|
}
|
|
|
|
def _create_endpoint(self, common, user, permission):
|
|
return objects.Endpoint(
|
|
common["auth_url"], user["username"], user["password"],
|
|
tenant_name=user.get("project_name", user.get("tenant_name")),
|
|
permission=permission,
|
|
region_name=common.get("region_name"),
|
|
endpoint_type=common.get("endpoint_type",
|
|
consts.EndpointType.PUBLIC),
|
|
endpoint=common.get("endpoint"),
|
|
domain_name=user.get("domain_name"),
|
|
user_domain_name=user.get("user_domain_name", "Default"),
|
|
admin_domain_name=user.get("admin_domain_name", "Default"),
|
|
project_domain_name=user.get("project_domain_name", "Default"),
|
|
https_insecure=common.get("https_insecure", False),
|
|
https_cacert=common.get("https_cacert")
|
|
)
|
|
|
|
def deploy(self):
|
|
permissions = consts.EndpointPermission
|
|
|
|
users = [self._create_endpoint(self.config, user, permissions.USER)
|
|
for user in self.config.get("users", [])]
|
|
|
|
admin = self._create_endpoint(self.config,
|
|
self.config.get("admin"),
|
|
permissions.ADMIN)
|
|
|
|
return {"admin": admin, "users": users}
|
|
|
|
def cleanup(self):
|
|
pass
|