~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to doc/source/dev/dev-quickstart.rst

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-04-17 09:28:31 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20150417092831-wu2awfbqomnzpeim
Tags: 2015.1~rc1-0ubuntu1
* New upstream milestone release:
  - d/control: Align with upstream dependencies
  - d/p/fix-requirements.patch: Dropped no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
366
366
 
367
367
.. note::
368
368
    Because devstack create multiple networks, we need to pass an additional parameter
369
 
    `--nic net-id` to the nova boot command when using the admin account, for example:
370
 
 
371
 
    net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
372
 
 
373
 
    nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
 
369
    ``--nic net-id`` to the nova boot command when using the admin account, for example::
 
370
 
 
371
      net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
 
372
 
 
373
      nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
374
374
 
375
375
As the demo tenant, you should now see a Nova instance building::
376
376