Skip to content

Commit

Permalink
fix keystone endpoint example for swift
Browse files Browse the repository at this point in the history
fixes bug 1002296
The keystone endpoint creation example was inconsistent and just
wrong. Fixed it up so it now uses the correct port, URLs and
the command matches the output.

Change-Id: I670fef70104aa8af0a2758c2638f28ba2a73e528
  • Loading branch information
fifieldt committed Jun 24, 2012
1 parent bf0f8c2 commit 08cf112
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions doc/src/docbkx/openstack-install/identity-install-keystone.xml
Expand Up @@ -624,21 +624,21 @@ service-create \
endpoint-create \
--region RegionOne \
--service_id=272efad2d1234376cbb911c1e5a5a6ed \
--publicurl 'http://127.0.0.1:8888/v1/AUTH_%(tenant_id)s' \
--adminurl 'http://127.0.0.1:8888/' \
--internalurl 'http://127.0.0.1:8888/v1/AUTH_%(tenant_id)s'
--publicurl 'http://192.168.206.130:8888/v1/AUTH_%(tenant_id)s' \
--adminurl 'http://192.168.206.130:8888/v1' \
--internalurl 'http://192.168.206.130:8888/v1/AUTH_%(tenant_id)s'
</userinput>
<computeroutput>
+-------------+----------------------------------------------------------------+
| Property | Value |
+-------------+----------------------------------------------------------------+
| adminurl | http://127.0.0.1:8080/ |
| id | e32b3c4780e51332f9c128a8c208a5a4 |
| internalurl | http://192.168.206.130:8080 |
| publicurl | http://127.0.0.1:8080/v1/AUTH_eb7e0c10a99446cfa14c244374549e9d |
| region | RegionOne |
| service_id | 272efad2d1234376cbb911c1e5a5a6ed |
+-------------+----------------------------------------------------------------+
+-------------+---------------------------------------------------+
| Property | Value |
+-------------+---------------------------------------------------+
| adminurl | http://192.168.206.130:8888/v1 |
| id | e32b3c4780e51332f9c128a8c208a5a4 |
| internalurl | http://192.168.206.130:8888/v1/AUTH_%(tenant_id)s |
| publicurl | http://192.168.206.130:8888/v1/AUTH_%(tenant_id)s |
| region | RegionOne |
| service_id | 272efad2d1234376cbb911c1e5a5a6ed |
+-------------+---------------------------------------------------+
</computeroutput>
</screen>
</section>
Expand Down

0 comments on commit 08cf112

Please sign in to comment.