From 80a0749939a98d3d5bcad4d9c609d5ae6eacf32d Mon Sep 17 00:00:00 2001 From: liusheng Date: Thu, 13 Jul 2017 09:36:09 +0800 Subject: [PATCH] Update the quickstart doc about spawning server Change-Id: Ib3ebb831690f07a19bf5b293d305b8d4db41e553 --- doc/source/dev/dev-quickstart.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 23f1edcb..2146cc6a 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -359,8 +359,11 @@ Source credentials, and spawn a server as the ``demo`` user:: # query the image id of the default cirros image image=$(openstack image show $DEFAULT_IMAGE_NAME -f value -c id) - # spawn server - As our moganclient is not ready now, will add this soon... + # query the private network id + net=$(openstack network show private -f value -c id) + + # spawn a server + openstack baremetal server create --flavor $MOGAN_DEFAULT_FLAVOR --nic net-id=$net --image $image test Building developer documentation ================================