[magnum] Change magnum service type

Magnum's service type has changed from container to
container-infra.

* openstack/governance
  https://review.openstack.org/#/c/311476/
* openstack/python-magnumclient
  https://review.openstack.org/#/c/319487/
* openstack/magnum
  https://review.openstack.org/#/c/319300/

Change-Id: I961e41a0038a479298656f2aa982e5e67e27a3b5
Partially-Implements: bp benchmark-scenarios-for-magnum
This commit is contained in:
Spyros Trigazis 2016-05-26 12:06:06 +02:00
parent 815906e14b
commit 32e754fe7c
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ class _ServiceType(utils.ImmutableMixin, utils.EnumMixin):
APPLICATION_CATALOG = "application-catalog"
BARE_METAL = "baremetal"
METRIC = "metric"
CONTAINER = "container"
CONTAINER_INFRA = "container-infra"
def __init__(self):
self.__names = {
@ -166,7 +166,7 @@ class _ServiceType(utils.ImmutableMixin, utils.EnumMixin):
self.APPLICATION_CATALOG: _Service.MURANO,
self.BARE_METAL: _Service.IRONIC,
self.METRIC: _Service.GNOCCHI,
self.CONTAINER: _Service.MAGNUM,
self.CONTAINER_INFRA: _Service.MAGNUM,
}
def __getitem__(self, service_type):