Add designate support with domain scenarios
*) Add designate client *) Add designate cleanup *) Add domain benchmarks Change-Id: I4d791411487788ba157f60c3f99aa48bf237b10b
This commit is contained in:
parent
d042c7c8bf
commit
89f075a2fe
@ -28,6 +28,7 @@ TEMPEST_TEST_SETS = ("full",
|
||||
"smoke",
|
||||
"baremetal",
|
||||
"compute",
|
||||
"dns",
|
||||
"data_processing",
|
||||
"identity",
|
||||
"image",
|
||||
@ -87,6 +88,7 @@ class _Service(utils.ImmutableMixin, utils.EnumMixin):
|
||||
HEAT = "heat"
|
||||
KEYSTONE = "keystone"
|
||||
NEUTRON = "neutron"
|
||||
DESIGNATE = "designate"
|
||||
CEILOMETER = "ceilometer"
|
||||
S3 = "s3"
|
||||
TROVE = "trove"
|
||||
@ -106,6 +108,7 @@ class _ServiceType(utils.ImmutableMixin, utils.EnumMixin):
|
||||
COMPUTE = "compute"
|
||||
COMPUTEV3 = "computev3"
|
||||
NETWORK = "network"
|
||||
DNS = "dns"
|
||||
METERING = "metering"
|
||||
S3 = "s3"
|
||||
DATABASE = "database"
|
||||
@ -123,6 +126,7 @@ class _ServiceType(utils.ImmutableMixin, utils.EnumMixin):
|
||||
self.ORCHESTRATION: _Service.HEAT,
|
||||
self.IDENTITY: _Service.KEYSTONE,
|
||||
self.NETWORK: _Service.NEUTRON,
|
||||
self.DNS: _Service.DESIGNATE,
|
||||
self.METERING: _Service.CEILOMETER,
|
||||
self.S3: _Service.S3,
|
||||
self.DATABASE: _Service.TROVE,
|
||||
|
@ -11,6 +11,7 @@ pbr>=0.6,!=0.7,<1.0
|
||||
pecan>=0.5.0
|
||||
PrettyTable>=0.7,<0.8
|
||||
PyYAML>=3.1.0
|
||||
python-designateclient>=1.0.0
|
||||
python-glanceclient>=0.13.1
|
||||
python-keystoneclient>=0.10.0
|
||||
python-novaclient>=2.17.0
|
||||
|
Loading…
Reference in New Issue
Block a user