Merge "Add notes for network and identity in get_service_list"

This commit is contained in:
Jenkins 2017-07-09 13:44:02 +00:00 committed by Gerrit Code Review
commit 138c0fb79f
1 changed files with 7 additions and 0 deletions

View File

@ -63,7 +63,14 @@ def get_service_list():
'compute': CONF.service_available.nova,
'image': CONF.service_available.glance,
'volume': CONF.service_available.cinder,
# NOTE(masayukig): We have two network services which are neutron and
# nova-network. And we have no way to know whether nova-network is
# available or not. After the pending removal of nova-network from
# nova, we can treat the network/neutron case in the same manner as
# the other services.
'network': True,
# NOTE(masayukig): Tempest tests always require the identity service.
# So we should set this True here.
'identity': True,
'object_storage': CONF.service_available.swift,
}