feadf75760
we're now based on nova's config system which mainly means that you will have to call config.CONF with a config file at some point during tests or running an executable
13 lines
779 B
Plaintext
13 lines
779 B
Plaintext
# config for TemplatedCatalog, using camelCase because I don't want to do
|
|
# translations for keystone compat
|
|
catalog.RegionOne.identity.publicURL = http://localhost:$(public_port)s/v2.0
|
|
catalog.RegionOne.identity.adminURL = http://localhost:$(admin_port)s/v2.0
|
|
catalog.RegionOne.identity.internalURL = http://localhost:$(admin_port)s/v2.0
|
|
catalog.RegionOne.identity.name = 'Identity Service'
|
|
|
|
# fake compute service for now to help novaclient tests work
|
|
catalog.RegionOne.compute.publicURL = http://localhost:$(compute_port)s/v1.1/$(tenant_id)s
|
|
catalog.RegionOne.compute.adminURL = http://localhost:$(compute_port)s/v1.1/$(tenant_id)s
|
|
catalog.RegionOne.compute.internalURL = http://localhost:$(compute_port)s/v1.1/$(tenant_id)s
|
|
catalog.RegionOne.compute.name = 'Compute Service'
|