Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The following new features have been backported in the Sunstone Web UI to 6.10.5

The following issues has been solved in 6.10.5:

- `Fix an issue with fs_lvm_ssh not honoring BRIDGE_LIST in the image datastore <https://github.com/OpenNebula/one/issues/7070>`__.
- `Fix validation issue during Group + Group Admin creation at the same time <https://github.com/OpenNebula/one/issues/6873>`__.
- `Fix scheduler allocation for VMs with NUMA pinning enabled <https://github.com/OpenNebula/one/issues/7071>`__.
- `Fix user_inputs order not considered when instantiating a template through the CLI <https://github.com/OpenNebula/one/issues/7040>`__.
Expand Down
37 changes: 19 additions & 18 deletions source/open_cluster_deployment/storage_setup/lvm_drivers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,24 +95,25 @@ Create Image Datastore

To create a new LVM Image Datastore, you need to set following (template) parameters:

+-----------------+---------------------------------------------------------------------------------------------+
| Attribute | Description |
+=================+=============================================================================================+
| ``NAME`` | Name of Datastore |
+-----------------+---------------------------------------------------------------------------------------------+
| ``TYPE`` | ``IMAGE_DS`` |
+-----------------+---------------------------------------------------------------------------------------------+
| ``DS_MAD`` | ``fs`` |
+-----------------+---------------------------------------------------------------------------------------------+
| ``TM_MAD`` | ``fs_lvm`` for NFS mode |
| +---------------------------------------------------------------------------------------------+
| | ``fs_lvm_ssh`` for SSH mode |
+-----------------+---------------------------------------------------------------------------------------------+
| ``DISK_TYPE`` | ``BLOCK`` |
+-----------------+---------------------------------------------------------------------------------------------+
| ``BRIDGE_LIST`` | List of Hosts with access to the LV. **NOT** needed if the Front-end is configured to access|
| | the LVs. |
+-----------------+---------------------------------------------------------------------------------------------+
+------------------+----------------------------------------------------------------------------------------------+
| Attribute | Description |
+==================+==============================================================================================+
| ``NAME`` | Name of Datastore |
+------------------+----------------------------------------------------------------------------------------------+
| ``TYPE`` | ``IMAGE_DS`` |
+------------------+----------------------------------------------------------------------------------------------+
| ``DS_MAD`` | ``fs`` |
+------------------+----------------------------------------------------------------------------------------------+
| ``TM_MAD`` | ``fs_lvm`` for NFS mode |
+------------------+----------------------------------------------------------------------------------------------+
| | ``fs_lvm_ssh`` for SSH mode |
+------------------+----------------------------------------------------------------------------------------------+
| ``DISK_TYPE`` | ``BLOCK`` |
+------------------+----------------------------------------------------------------------------------------------+
|| ``BRIDGE_LIST`` || List of Hosts with access to the file system where image files are stored before dumping to |
|| || LVs. |
+------------------+----------------------------------------------------------------------------------------------+


The following examples illustrate the creation of an LVM datastore using a template. In this case we will use the Host ``host01`` as one of our OpenNebula LVM-enabled Hosts.

Expand Down
Loading