CentOS Stream 9
Sponsored Link

OpenStack Bobcat : How to use Manila (Local Device)2023/10/26

 
This is How to use OpenStack Shared File System (Manila).
This example is based on the environment like follows.
For example, Configure local block device as shared storage on Storage Node and use it from Instances.
Therefore, it needs there is a free block device on Storage Node.
------------+--------------------------+--------------------------+------------
            |                          |                          |
        eth0|10.0.0.30             eth0|10.0.0.50             eth0|10.0.0.51
+-----------+-----------+  +-----------+-----------+  +-----------+-----------+
|   [ dlp.srv.world ]   |  | [ network.srv.world ] |  |  [ node01.srv.world ] |
|     (Control Node)    |  |     (Network Node)    |  |     (Compute Node)    |
|                       |  |                       |  |                       |
|  MariaDB    RabbitMQ  |  |      Open vSwitch     |  |        Libvirt        |
|  Memcached  Nginx     |  |     Neutron Server    |  |      Nova Compute     |
|  Keystone   httpd     |  |      OVN-Northd       |  |      Open vSwitch     |
|  Glance     Nova API  |  |  Nginx  iSCSI Target  |  |   OVN Metadata Agent  |
| Cinder API Manila API |  |     Cinder Volume     |  |     OVN-Controller    |
|                       |  |     Manila Share      |  |                       |
+-----------------------+  +-----------------------+  +-----------------------+

[1] Configure Storage Node.
[root@network ~]#
dnf -y install nfs-utils nfs4-acl-tools
# create a volume for Manila on free block device

[root@network ~]#
pvcreate /dev/sdc1

  Physical volume "/dev/sdc1" successfully created
[root@network ~]#
vgcreate manila-volumes /dev/sdc1

  Volume group "manila-volumes" successfully created
[root@network ~]#
vi /etc/manila/manila.conf
# add follows into the [DEFAULT] section

enabled_share_backends = lvm
# add to the end

[lvm]
share_backend_name = LVM
share_driver = manila.share.drivers.lvm.LVMShareDriver
driver_handles_share_servers = False
lvm_share_volume_group = manila-volumes
lvm_share_export_ips = $my_ip
[root@network ~]#
systemctl enable --now openstack-manila-share nfs-server
[2] Create default share type.
It's OK to work on any node. (example below is on Control Node)
[root@dlp ~(keystone)]#
openstack share type create default_share_type False

+----------------------+--------------------------------------+
| Field                | Value                                |
+----------------------+--------------------------------------+
| id                   | 0d0daaac-f743-4883-a5bd-c4cda43f32e4 |
| name                 | default_share_type                   |
| visibility           | public                               |
| is_default           | True                                 |
| required_extra_specs | driver_handles_share_servers : False |
| optional_extra_specs |                                      |
| description          | None                                 |
+----------------------+--------------------------------------+

[root@dlp ~(keystone)]#
openstack share type list

+--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+
| ID                                   | Name               | Visibility | Is Default | Required Extra Specs                 | Optional Extra Specs | Description |
+--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+
| 0d0daaac-f743-4883-a5bd-c4cda43f32e4 | default_share_type | public     | True       | driver_handles_share_servers : False |                      | None        |
+--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+
[3] Login as a common user to create Manila NFS Share.
[cent@dlp ~(keystone)]$
openstack share create NFS 10 --name share01 --share-type default_share_type

+---------------------------------------+--------------------------------------+
| Field                                 | Value                                |
+---------------------------------------+--------------------------------------+
| access_rules_status                   | active                               |
| availability_zone                     | None                                 |
| create_share_from_snapshot_support    | False                                |
| created_at                            | 2023-10-26T01:34:18.695375           |
| description                           | None                                 |
| has_replicas                          | False                                |
| id                                    | 119987b4-e314-44ea-95f0-6b32d3a3b82e |
| is_public                             | False                                |
| is_soft_deleted                       | False                                |
| metadata                              | {}                                   |
| mount_snapshot_support                | False                                |
| name                                  | share01                              |
| progress                              | None                                 |
| project_id                            | f4598dfd3b8a47149234b6892d18d5a4     |
| replication_type                      | None                                 |
| revert_to_snapshot_support            | False                                |
| scheduled_to_be_deleted_at            | None                                 |
| share_group_id                        | None                                 |
| share_network_id                      | None                                 |
| share_proto                           | NFS                                  |
| share_type                            | 0d0daaac-f743-4883-a5bd-c4cda43f32e4 |
| share_type_name                       | default_share_type                   |
| size                                  | 10                                   |
| snapshot_id                           | None                                 |
| snapshot_support                      | False                                |
| source_backup_id                      | None                                 |
| source_share_group_snapshot_member_id | None                                 |
| status                                | creating                             |
| task_state                            | None                                 |
| user_id                               | d70a5f7908de4cd9aa8e189b725244a9     |
| volume_type                           | default_share_type                   |
+---------------------------------------+--------------------------------------+

# OK if the Status turns to [available] after a few minutes

[cent@dlp ~(keystone)]$
openstack share list

+--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+
| ID                                   | Name    | Size | Share Proto | Status    | Is Public | Share Type Name    | Host | Availability Zone |
+--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+
| 119987b4-e314-44ea-95f0-6b32d3a3b82e | share01 |   10 | NFS         | available | False     | default_share_type |      | nova              |
+--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+
[4] That's OK, you can use Manila Shared filesystem on your own instances like follows.
[cent@dlp ~(keystone)]$
openstack server list

+--------------------------------------+------------+---------+------------------------------------+----------------+-----------+
| ID                                   | Name       | Status  | Networks                           | Image          | Flavor    |
+--------------------------------------+------------+---------+------------------------------------+----------------+-----------+
| 78b8c394-be14-4312-84e8-06eeebbd74f3 | CentOS-St9 | SHUTOFF | private=10.0.0.208, 192.168.100.63 | CentOS-Stream9 | m1.medium |
+--------------------------------------+------------+---------+------------------------------------+----------------+-----------+

# set access permission first

[cent@dlp ~(keystone)]$
openstack share access create share01 ip 10.0.0.0/24 --access-level rw

+--------------+--------------------------------------+
| Field        | Value                                |
+--------------+--------------------------------------+
| id           | 3d182cf5-5450-490b-9f45-c01d952363fb |
| share_id     | 119987b4-e314-44ea-95f0-6b32d3a3b82e |
| access_level | rw                                   |
| access_to    | 10.0.0.0/24                          |
| access_type  | ip                                   |
| state        | queued_to_apply                      |
| access_key   | None                                 |
| created_at   | 2023-10-26T01:37:36.229491           |
| updated_at   | None                                 |
| properties   |                                      |
+--------------+--------------------------------------+

# OK if State turns to [active]

[cent@dlp ~(keystone)]$
openstack share access list share01

+--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+----------------------------+
| ID                                   | Access Type | Access To   | Access Level | State  | Access Key | Created At                 | Updated At                 |
+--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+----------------------------+
| 3d182cf5-5450-490b-9f45-c01d952363fb | ip          | 10.0.0.0/24 | rw           | active | None       | 2023-10-26T01:37:36.229491 | 2023-10-26T01:37:37.557621 |
+--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+----------------------------+

[cent@dlp ~(keystone)]$
openstack server start CentOS-St9

# confirm access Path

[cent@dlp ~(keystone)]$
openstack share show share01 | grep path | cut -d'|' -f3

 path = 10.0.0.50:/var/lib/manila/mnt/share-ba2d15c6-ba36-4386-a1b7-6d01496f0094

[cent@dlp ~(keystone)]$
ssh centos@10.0.0.208

Last login: Tue Oct 24 03:34:34 2023 from 10.0.0.30
[centos@centos-st9 ~]$
# mount Manila shared storage

[centos@centos-st9 ~]$
sudo mount -t nfs \
10.0.0.50:/var/lib/manila/mnt/share-ba2d15c6-ba36-4386-a1b7-6d01496f0094 /mnt

[centos@centos-st9 ~]$
df -hT

Filesystem                                                               Type      Size  Used Avail Use% Mounted on
devtmpfs                                                                 devtmpfs  4.0M     0  4.0M   0% /dev
tmpfs                                                                    tmpfs     1.8G     0  1.8G   0% /dev/shm
tmpfs                                                                    tmpfs     732M  8.6M  724M   2% /run
/dev/mapper/cs-root                                                      xfs       8.0G  2.0G  6.1G  25% /
/dev/vda1                                                                xfs      1014M  302M  713M  30% /boot
tmpfs                                                                    tmpfs     366M     0  366M   0% /run/user/1001
10.0.0.50:/var/lib/manila/mnt/share-ba2d15c6-ba36-4386-a1b7-6d01496f0094 nfs4      9.8G     0  9.3G   0% /mnt

[centos@centos-st9 ~]$
echo "manila write test" > /mnt/testfile.txt

[centos@centos-st9 ~]$
cat /mnt/testfile.txt

manila write test
Matched Content