File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,18 @@ catalog.RegionOne.identity.internalURL = http://%SERVICE_HOST%:$(public_port)s/v
66catalog.RegionOne.identity.name = 'Identity Service'
77
88
9- catalog.RegionOne.compute.publicURL = http://%SERVICE_HOST%:8774/v1.1 /$(tenant_id)s
10- catalog.RegionOne.compute.adminURL = http://%SERVICE_HOST%:8774/v1.1 /$(tenant_id)s
11- catalog.RegionOne.compute.internalURL = http://%SERVICE_HOST%:8774/v1.1 /$(tenant_id)s
9+ catalog.RegionOne.compute.publicURL = http://%SERVICE_HOST%:8774/v2 /$(tenant_id)s
10+ catalog.RegionOne.compute.adminURL = http://%SERVICE_HOST%:8774/v2 /$(tenant_id)s
11+ catalog.RegionOne.compute.internalURL = http://%SERVICE_HOST%:8774/v2 /$(tenant_id)s
1212catalog.RegionOne.compute.name = 'Compute Service'
1313
1414
15+ catalog.RegionOne.volume.publicURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
16+ catalog.RegionOne.volume.adminURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
17+ catalog.RegionOne.volume.internalURL = http://%SERVICE_HOST%:8776/v1/$(tenant_id)s
18+ catalog.RegionOne.volume.name = 'Volume Service'
19+
20+
1521catalog.RegionOne.ec2.publicURL = http://%SERVICE_HOST%:8773/services/Cloud
1622catalog.RegionOne.ec2.adminURL = http://%SERVICE_HOST%:8773/services/Admin
1723catalog.RegionOne.ec2.internalURL = http://%SERVICE_HOST%:8773/services/Cloud
Original file line number Diff line number Diff line change @@ -88,6 +88,14 @@ keystone service-create \
8888 --name=keystone \
8989 --type=identity \
9090 --description=" Keystone Identity Service"
91+
92+ if [[ " $ENABLED_SERVICES " =~ " n-vol" ]]; then
93+ keystone service-create \
94+ --name=" nova-volume" \
95+ --type=volume \
96+ --description=" Nova Volume Service"
97+ fi
98+
9199if [[ " $ENABLED_SERVICES " =~ " swift" ]]; then
92100 keystone service-create \
93101 --name=swift \
You can’t perform that action at this time.
0 commit comments