diff --git a/doc/cli-reference/ch_cli_glance_property_keys.xml b/doc/cli-reference/ch_cli_glance_property_keys.xml
index fe30c846af..30a7cfed80 100644
--- a/doc/cli-reference/ch_cli_glance_property_keys.xml
+++ b/doc/cli-reference/ch_cli_glance_property_keys.xml
@@ -15,9 +15,13 @@
with the option for both the glance
image-update and glance image-create commands. For
example:
- $glance image-update img-uuid --property architecture=x86_64
+ $glance image-update IMG-UUID --property architecture=x86_64Behavior set using image properties overrides
- behavior set using flavors.
+ behavior set using flavors. For more information, refer to
+
+ OpenStack Cloud Administrator Guide
+
Property keys
@@ -217,6 +221,14 @@
+
+
libvirt API driver
+
hw_rng_model
+
Adds a random-number generator device to the image's instances. The cloud
+ administrator can enable and control device behavior by configuring the
+ instance's flavor. By default, the generator device is disabled.
A descriptive name.
- xx.size_name
+ XX.SIZE_NAME
is typically not required, though some third party
tools may rely on it.
@@ -106,7 +106,8 @@
Flavor customization can be limited by the hypervisor in use. For example the
libvirt driver enables quotas on CPUs available to a VM, disk
- tuning, bandwidth I/O, watchdog behavior, and instance VIF traffic control.
+ tuning, bandwidth I/O, watchdog behavior, random number generator device control, and
+ instance VIF traffic control.
CPU limitsYou can configure the CPU limits with control parameters with the nova
@@ -225,8 +226,8 @@
hw_watchdog_action is not specified, the watchdog is
disabled.To set the behavior, use:
- $nova flavor-key flavorName set hw_watchdog_action=action
- Valid action values are:
+ $nova flavor-key FLAVOR-NAME set hw_watchdog_action=ACTION
+ Valid ACTION values are:disabled—(default) The device is not
@@ -251,6 +252,26 @@
flavors.
+
+ Random-number generator
+ If a random-number generator device has been added to the instance through its image
+ properties, the device can be enabled and configured using:
+ $nova flavor-key FLAVOR-NAME set hw_rng:allowed=True
+$nova flavor-key FLAVOR-NAME set hw_rng:rate_bytes=RATE-BYTES
+$nova flavor-key FLAVOR-NAME set hw_rng:rate_period=RATE-PERIOD
+ Where:
+
+
+ RATE-BYTES—(Integer) Allowed amount of
+ bytes that the guest can read from the host's entropy per period.
+
+
+ RATE-PERIOD—(Integer) Duration of the
+ read period in seconds.
+
+
+
+ Instance VIF traffic controlFlavors can also be assigned to particular projects. By
default, a flavor is public and available to all projects.