Fixed nova-manage floating command syntax.

nova-manage floating create/destroy no longer seem to take a hostname
argument. Removed it from doc.

Addresses
http://docs.openstack.org/diablo/openstack-compute/admin/content/associating-public-ip.html#comment-332898216

Implementation of nova-manage floating create for Diablo is here:
 * https://github.com/openstack/nova/blob/2011.3.1/bin/nova-manage#L689

Change-Id: Ib4ee853e5a7489dcd7586ab2f0738809d9fcb85c
This commit is contained in:
Lorin Hochstein 2012-02-24 10:15:06 -05:00
parent fc23ef2833
commit 701cf19ef8
1 changed files with 4 additions and 4 deletions

View File

@ -504,7 +504,7 @@ nova secgroup-add-rule default tcp 22 22 0.0.0.0/0 </literallayout>If
<para>These are the basic overall steps and checkpoints. </para>
<para>First, set up the public address.</para>
<literallayout class="monospaced">nova-manage create my-hostname 68.99.26.170/31
<literallayout class="monospaced">nova-manage floating create 68.99.26.170/31
nova floating-ip-create 68.99.26.170
nova add-floating-ip 1 68.99.26.170</literallayout>
@ -573,13 +573,13 @@ valid_lft forever preferred_lft forever
</listitem>
<listitem>
<para>
nova-manage floating create [hostname] [cidr] - This command creates specific
floating IPs for a specific network host and either a single address or a subnet.
nova-manage floating create [cidr] - This command creates specific
floating IPs for either a single address or a subnet.
</para>
</listitem>
<listitem>
<para>
nova-manage floating destroy [hostname] [cidr] - This command removes floating IP
nova-manage floating delete [cidr] - This command removes floating IP
addresses using the same parameters as the create command.
</para>
</listitem>