Allow user specified endpoint_type in config
* Use user specified endpoint_type (public|internal|admin) for creating openstack clients in Rally Change-Id: I4af74d21417045df966c7fbe1ee735b15a36ae5f Closes-Bug: #1351567
This commit is contained in:
parent
aaa9d0b6f5
commit
8f900bef44
@ -68,6 +68,12 @@ class _EndpointPermission(utils.ImmutableMixin, utils.EnumMixin):
|
||||
USER = "user"
|
||||
|
||||
|
||||
class _EndpointType(utils.ImmutableMixin, utils.EnumMixin):
|
||||
INTERNAL = "internal"
|
||||
ADMIN = "admin"
|
||||
PUBLIC = "public"
|
||||
|
||||
|
||||
class _RunnerType(utils.ImmutableMixin, utils.EnumMixin):
|
||||
SERIAL = "serial"
|
||||
CONSTANT = "constant"
|
||||
@ -148,3 +154,4 @@ EndpointPermission = _EndpointPermission()
|
||||
RunnerType = _RunnerType()
|
||||
ServiceType = _ServiceType()
|
||||
Service = _Service()
|
||||
EndpointType = _EndpointType()
|
||||
|
Loading…
Reference in New Issue
Block a user