Jump to: navigation, search

Difference between revisions of "Nova/Quobyte"

(Created page with "=== Nova Driver Configuration with Quobyte === The Quobyte Nova driver provides access to vm images stored on a Quobyte volume. Use the following configuration example in '...")
 
(Updated current configuration hints.)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Nova Driver Configuration with Quobyte ===
+
=== Quobyte Nova Driver Configuration ===
  
The Quobyte Nova driver provides access to vm images stored on a Quobyte volume. Use the following configuration example in ''/etc/nova/nova.conf'':
+
The Quobyte Nova driver provides access to vm images stored on a Quobyte volume.  
 +
 
 +
<!--
 +
==== Nova Releases Newton and Newer ====
 +
 
 +
Use the following configuration option:
 +
 
 +
;quobyte_mount_point_base
 +
: Directory where the Quobyte Cinder volume is expected to be mounted on the compute node. See the Quobyte manual on how to mount Quobyte volumes.
 +
 
 +
Example in ''/etc/nova/nova.conf'':
 +
 
 +
<syntaxhighlight lang="ini">
 +
[default]
 +
quobyte_mount_point_base = /mnt/openstack/quobytemnt
 +
</syntaxhighlight>
 +
 
 +
==== Nova Releases Mitaka and Older ====
 +
-->
 +
 
 +
Use the following configuration options:
 +
 
 +
;quobyte_mount_point_base
 +
: Directory where the Quobyte driver mounts the Quobyte volume on the compute node (note the semantic difference to the same parameter in newer releases).
 +
;quobyte_client_cfg
 +
: Path to a Quobyte Client configuration file.
 +
 
 +
Example in ''/etc/nova/nova.conf'':
  
 
<syntaxhighlight lang="ini">
 
<syntaxhighlight lang="ini">
 
[default]
 
[default]
libvirt_volume_drivers=quobte=nova.virt.libvirt.quobyte.LibvirtQuobyteVolumeDriver
 
quobyte_volume_url = quobyte://<server>/<Quobyte volume name>
 
 
quobyte_client_cfg = /etc/quobyte/client.cfg
 
quobyte_client_cfg = /etc/quobyte/client.cfg
quobyte_sparsed_volumes = True
 
quboyte_qcow2_volumes = True
 
 
quobyte_mount_point_base = /mnt/openstack/quobytemnt
 
quobyte_mount_point_base = /mnt/openstack/quobytemnt
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 10:40, 6 July 2016

Quobyte Nova Driver Configuration

The Quobyte Nova driver provides access to vm images stored on a Quobyte volume.


Use the following configuration options:

quobyte_mount_point_base
Directory where the Quobyte driver mounts the Quobyte volume on the compute node (note the semantic difference to the same parameter in newer releases).
quobyte_client_cfg
Path to a Quobyte Client configuration file.

Example in /etc/nova/nova.conf:

[default]
quobyte_client_cfg = /etc/quobyte/client.cfg
quobyte_mount_point_base = /mnt/openstack/quobytemnt