Cleanup for 3.8.0 release
Release notes and proofreading cleanups. Change-Id: Iddc6a64e6ea3082aa220a2465793e6f7f2aecaa9
This commit is contained in:
parent
da2a820d2f
commit
16aeee4303
@ -18,18 +18,16 @@ Create meter rule
|
||||
.. code:: bash
|
||||
|
||||
openstack network meter rule create
|
||||
[--project <project> [--project-domain <project-domain>]]
|
||||
--remote-ip-prefix <remote-ip-prefix>
|
||||
[--ingress | --egress]
|
||||
[--exclude | --include]
|
||||
--remote-ip-prefix <remote-ip-prefix>
|
||||
[--project <project> [--project-domain <project-domain>]]
|
||||
<meter>
|
||||
|
||||
.. option:: --project <project>
|
||||
|
||||
Owner's project (name or ID)
|
||||
|
||||
*Network version 2 only*
|
||||
|
||||
.. option:: --project-domain <project-domain>
|
||||
|
||||
Domain the project belongs to (name of ID).
|
||||
|
@ -117,11 +117,16 @@ Create a new server
|
||||
|
||||
.. option:: --image <image>
|
||||
|
||||
Create server from this image (name or ID)
|
||||
Create server boot disk from this image (name or ID)
|
||||
|
||||
.. option:: --volume <volume>
|
||||
|
||||
Create server from this volume (name or ID)
|
||||
Create server using this volume as the boot disk (name or ID)
|
||||
|
||||
This option automatically creates a block device mapping with a boot
|
||||
index of 0. On many hypervisors (libvirt/kvm for example) this will
|
||||
be device ``vda``. Do not create a duplicate mapping using
|
||||
:option:`--block-device-mapping` for this volume.
|
||||
|
||||
.. option:: --flavor <flavor>
|
||||
|
||||
|
@ -336,12 +336,15 @@ class CreateServer(command.ShowOne):
|
||||
disk_group.add_argument(
|
||||
'--image',
|
||||
metavar='<image>',
|
||||
help=_('Create server from this image (name or ID)'),
|
||||
help=_('Create server boot disk from this image (name or ID)'),
|
||||
)
|
||||
disk_group.add_argument(
|
||||
'--volume',
|
||||
metavar='<volume>',
|
||||
help=_('Create server from this volume (name or ID)'),
|
||||
help=_(
|
||||
'Create server using this volume as the boot disk '
|
||||
'(name or ID)'
|
||||
),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--flavor',
|
||||
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Add meter rules commands for ``network meter rule create``,
|
||||
``network meter rule delete``, ``network meter rule list``,
|
||||
and ``network meter rule show``.
|
||||
[Blueprint :oscbp:`neutron-client-metering`]
|
@ -2,6 +2,4 @@
|
||||
features:
|
||||
- |
|
||||
Add ``--no-property`` option in ``volume snapshot set``.
|
||||
Supporting ``--no-property`` option will apply user a convenient way to
|
||||
clean all properties of volume snapshot in a short command.
|
||||
[ Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>` _]
|
||||
[Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>`_]
|
||||
|
Loading…
Reference in New Issue
Block a user