Fix usage of registering magnum endpoint

Interface of openstack client was changed how to register
endpoint url.
So this fixes document about it.

Change-Id: I08911f3a1818f7b08eafaa81fcb02a4cb113a349
This commit is contained in:
OTSUKA, Yuanying 2016-03-23 17:59:01 +09:00
parent 0d07b47190
commit a329d35df9
1 changed files with 6 additions and 4 deletions

View File

@ -247,10 +247,12 @@ Configure the keystone endpoint::
--description="Magnum Container Service" \
container
openstack endpoint create --region=RegionOne \
--publicurl=http://127.0.0.1:9511/v1 \
--internalurl=http://127.0.0.1:9511/v1 \
--adminurl=http://127.0.0.1:9511/v1 \
magnum
container public http://127.0.0.1:9511/v1
openstack endpoint create --region=RegionOne \
container internal http://127.0.0.1:9511/v1
openstack endpoint create --region=RegionOne \
container admin http://127.0.0.1:9511/v1
Start the API service in a new screen::