Update `os service create` examples in config services

OSC was updated to make type a mandatory field, and a service name
made optional. Though the current examples still work, OSC will
deprecate the supported syntax eventually. Update the docs now
before I forget to do it later.

Change-Id: I56f3e3e8601b2df488e8a45015a53f184d107b3a
Related-Bug: #1404073
This commit is contained in:
Steve Martinelli 2015-02-23 02:04:01 -05:00
parent 23fa79a318
commit 28a12d51b4
1 changed files with 5 additions and 5 deletions

View File

@ -138,15 +138,15 @@ Keystone is online, you need to add the services to the catalog:
.. code-block:: bash
$ openstack service create nova --type compute \
$ openstack service create compute --name nova \
--description "Nova Compute Service"
$ openstack service create ec2 --type ec2 \
$ openstack service create ec2 --name ec2 \
--description "EC2 Compatibility Layer"
$ openstack service create glance --type image \
$ openstack service create image --name glance \
--description "Glance Image Service"
$ openstack service create keystone --type identity \
$ openstack service create identity --name keystone \
--description "Keystone Identity Service"
$ openstack service create swift --type object-store \
$ openstack service create object-store --name swift \
--description "Swift Service"