Skip to content

Commit 06a09d0

Browse files
author
Dean Troyer
committed
Fix double-quoted service names
The Keystone service template parser doesn't do any quote interpolation, it just splits on ' = ' and passes the two parts on. So we just remove the quotes for now. Fixes bug 943523 Change-Id: Ia2a10ec18db1a82f23f36200b0cdef84b4f78155
1 parent 8da5656 commit 06a09d0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

files/default_catalog.templates

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@
33
catalog.RegionOne.identity.publicURL = http://%SERVICE_HOST%:$(public_port)s/v2.0
44
catalog.RegionOne.identity.adminURL = http://%SERVICE_HOST%:$(admin_port)s/v2.0
55
catalog.RegionOne.identity.internalURL = http://%SERVICE_HOST%:$(public_port)s/v2.0
6-
catalog.RegionOne.identity.name = 'Identity Service'
6+
catalog.RegionOne.identity.name = Identity Service
77

88

99
catalog.RegionOne.compute.publicURL = http://%SERVICE_HOST%:8774/v2/$(tenant_id)s
1010
catalog.RegionOne.compute.adminURL = http://%SERVICE_HOST%:8774/v2/$(tenant_id)s
1111
catalog.RegionOne.compute.internalURL = http://%SERVICE_HOST%:8774/v2/$(tenant_id)s
12-
catalog.RegionOne.compute.name = 'Compute Service'
12+
catalog.RegionOne.compute.name = Compute Service
1313

1414

1515
catalog.RegionOne.volume.publicURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
1616
catalog.RegionOne.volume.adminURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
1717
catalog.RegionOne.volume.internalURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
18-
catalog.RegionOne.volume.name = 'Volume Service'
18+
catalog.RegionOne.volume.name = Volume Service
1919

2020

2121
catalog.RegionOne.ec2.publicURL = http://%SERVICE_HOST%:8773/services/Cloud
2222
catalog.RegionOne.ec2.adminURL = http://%SERVICE_HOST%:8773/services/Admin
2323
catalog.RegionOne.ec2.internalURL = http://%SERVICE_HOST%:8773/services/Cloud
24-
catalog.RegionOne.ec2.name = 'EC2 Service'
24+
catalog.RegionOne.ec2.name = EC2 Service
2525

2626

2727
catalog.RegionOne.s3.publicURL = http://%SERVICE_HOST%:3333
2828
catalog.RegionOne.s3.adminURL = http://%SERVICE_HOST%:3333
2929
catalog.RegionOne.s3.internalURL = http://%SERVICE_HOST%:3333
30-
catalog.RegionOne.s3.name = 'S3 Service'
30+
catalog.RegionOne.s3.name = S3 Service
3131

3232

3333
catalog.RegionOne.image.publicURL = http://%SERVICE_HOST%:9292/v1
3434
catalog.RegionOne.image.adminURL = http://%SERVICE_HOST%:9292/v1
3535
catalog.RegionOne.image.internalURL = http://%SERVICE_HOST%:9292/v1
36-
catalog.RegionOne.image.name = 'Image Service'
36+
catalog.RegionOne.image.name = Image Service

0 commit comments

Comments
 (0)