OpenStack Yoga : How to use Manila (Local Device)2022/06/10 |
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) | | (Storage Node) | | (Compute Node) | | | | | | | | MariaDB RabbitMQ | | Open vSwitch | | Libvirt | | Memcached httpd | | Neutron Server | | Nova Compute | | Keystone Glance | | OVN-Northd | | Open vSwitch | | Nova API Cinder API | | Cinder Volume | | OVN Metadata Agent | | Manila API | | Manila Share | | OVN-Controller | +-----------------------+ +-----------------------+ +-----------------------+ |
[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 [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 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)]# manila type-create default_share_type False +----------------------+--------------------------------------+ | Property | Value | +----------------------+--------------------------------------+ | ID | b01f8275-6926-44c1-a2d9-c4e3699b10ac | | Name | default_share_type | | Visibility | public | | is_default | YES | | required_extra_specs | driver_handles_share_servers : False | | optional_extra_specs | | | Description | None | +----------------------+--------------------------------------+[root@dlp ~(keystone)]# manila type-list +--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+ | ID | Name | visibility | is_default | required_extra_specs | optional_extra_specs | Description | +--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+ | b01f8275-6926-44c1-a2d9-c4e3699b10ac | default_share_type | public | YES | driver_handles_share_servers : False | | None | +--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+ |
[3] | Login as a common user to create Manila NFS Share. |
[cent@dlp ~(keystone)]$ manila create NFS 10 --name share01 --share-type default_share_type +---------------------------------------+--------------------------------------+ | Property | Value | +---------------------------------------+--------------------------------------+ | id | 61e2ecfd-f395-419b-a21c-5533b38ebae1 | | size | 10 | | availability_zone | None | | created_at | 2022-06-10T06:37:20.796486 | | status | creating | | name | share01 | | description | None | | project_id | 911e5ff7686741c782d6acc6d7155db1 | | snapshot_id | None | | share_network_id | None | | share_proto | NFS | | metadata | {} | | share_type | b01f8275-6926-44c1-a2d9-c4e3699b10ac | | is_public | False | | snapshot_support | False | | task_state | None | | share_type_name | default_share_type | | access_rules_status | active | | replication_type | None | | has_replicas | False | | user_id | 1ff4591a7f8140fcad38fd9f606a66a6 | | create_share_from_snapshot_support | False | | revert_to_snapshot_support | False | | share_group_id | None | | source_share_group_snapshot_member_id | None | | mount_snapshot_support | False | | progress | None | | is_soft_deleted | False | | scheduled_to_be_deleted_at | None | +---------------------------------------+--------------------------------------+ # OK if the Status turns to [available] after a few minutes [cent@dlp ~(keystone)]$ manila list +--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+ | ID | Name | Size | Share Proto | Status | Is Public | Share Type Name | Host | Availability Zone | +--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+ | 61e2ecfd-f395-419b-a21c-5533b38ebae1 | 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 | +--------------------------------------+------------+---------+-------------------------------------+----------------+----------+ | 25ef320e-b16e-4085-96ef-af7fa0d33cfb | CentOS-St9 | SHUTOFF | private=10.0.0.242, 192.168.100.214 | CentOS-Stream9 | m1.small | +--------------------------------------+------------+---------+-------------------------------------+----------------+----------+ # set access permission first [cent@dlp ~(keystone)]$ manila access-allow share01 ip 10.0.0.0/24 --access-level rw +--------------+--------------------------------------+ | Property | Value | +--------------+--------------------------------------+ | id | 2d2851b1-c56d-4937-b233-b26bf4934101 | | share_id | 61e2ecfd-f395-419b-a21c-5533b38ebae1 | | access_level | rw | | access_to | 10.0.0.0/24 | | access_type | ip | | state | queued_to_apply | | access_key | None | | created_at | 2022-06-10T06:38:33.410552 | | updated_at | None | | metadata | {} | +--------------+--------------------------------------+ # OK if State turns to [active] [cent@dlp ~(keystone)]$ manila access-list share01 +--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+------------+ | id | access_type | access_to | access_level | state | access_key | created_at | updated_at | +--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+------------+ | 2d2851b1-c56d-4937-b233-b26bf4934101 | ip | 10.0.0.0/24 | rw | active | None | 2022-06-10T06:38:33.410552 | None | +--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+------------+
[cent@dlp ~(keystone)]$
openstack server start CentOS-St9 # confirm access Path [cent@dlp ~(keystone)]$ manila show share01 | grep path | cut -d'|' -f3 path = 10.0.0.50:/var/lib/manila/mnt/share-ca0ab49e-1e48-450d-9633-744d81bd9ff6
[cent@dlp ~(keystone)]$
ssh centos@10.0.0.242 Activate the web console with: systemctl enable --now cockpit.socket [centos@centos-st9 ~]$ # mount Manila shared storage [centos@centos-st9 ~]$ sudo mount -t nfs \ 10.0.0.50:/var/lib/manila/mnt/share-ca0ab49e-1e48-450d-9633-744d81bd9ff6 /mnt [centos@centos-st9 ~]$ df -hT Filesystem Type Size Used Avail Use% Mounted on devtmpfs devtmpfs 866M 0 866M 0% /dev tmpfs tmpfs 886M 0 886M 0% /dev/shm tmpfs tmpfs 355M 5.0M 350M 2% /run /dev/mapper/cs-root xfs 8.0G 1.7G 6.4G 21% / /dev/vda1 xfs 1014M 221M 794M 22% /boot tmpfs tmpfs 178M 0 178M 0% /run/user/1000 10.0.0.50:/var/lib/manila/mnt/share-ca0ab49e-1e48-450d-9633-744d81bd9ff6 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 |
Sponsored Link |