OpenStack Victoria : How to use Manila (Local Device)2021/03/25 |
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 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ 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 Volume | | OVN Metadata Agent | | Cinder API | | iSCSI Target | | OVN-Controller | | Manila API | | Manila Share | | | +-----------------------+ +-----------------------+ +-----------------------+ |
[1] | Configure Storage Node. |
[root@storage ~]#
dnf -y install nfs-utils nfs4-acl-tools # create a volume for Manila on free block device [root@storage ~]# pvcreate /dev/sdc1 Physical volume "/dev/sdc1" successfully created [root@storage ~]# vgcreate manila-volumes /dev/sdc1 Volume group "manila-volumes" successfully created
[root@storage ~]#
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 = 10.0.0.50 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 | c24f09e6-ea80-4234-9570-4d5d2b5e98e9 | | 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 | +--------------------------------------+--------------------+------------+------------+--------------------------------------+----------------------+-------------+ | c24f09e6-ea80-4234-9570-4d5d2b5e98e9 | 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 +---------------------------------------+--------------------------------------+ | Property | Value | +---------------------------------------+--------------------------------------+ | id | 3a051d55-481e-4da7-9ddd-dc1e0a23624e | | size | 10 | | availability_zone | None | | created_at | 2021-03-25T03:42:59.000000 | | status | creating | | name | share01 | | description | None | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | snapshot_id | None | | share_network_id | None | | share_proto | NFS | | metadata | {} | | share_type | c24f09e6-ea80-4234-9570-4d5d2b5e98e9 | | 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 | e08c35de3b6746bd9518c97f7068a71e | | 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 | +---------------------------------------+--------------------------------------+ # 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 | +--------------------------------------+---------+------+-------------+-----------+-----------+--------------------+------+-------------------+ | 3a051d55-481e-4da7-9ddd-dc1e0a23624e | 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 | +--------------------------------------+-------------+---------+------------------------------------+-----------------+----------+ | da1c8adc-4733-4ee5-a654-49d652a6aaa3 | CentOS-St-8 | SHUTOFF | private=192.168.100.63, 10.0.0.253 | CentOS-Stream-8 | 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 | f71e4942-bb4c-433e-bddd-fb8365b2de10 | | share_id | 3a051d55-481e-4da7-9ddd-dc1e0a23624e | | access_level | rw | | access_to | 10.0.0.0/24 | | access_type | ip | | state | queued_to_apply | | access_key | None | | created_at | 2021-03-25T03:44:24.000000 | | 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 | +--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+------------+ | f71e4942-bb4c-433e-bddd-fb8365b2de10 | ip | 10.0.0.0/24 | rw | active | None | 2021-03-25T03:44:24.000000 | None | +--------------------------------------+-------------+-------------+--------------+--------+------------+----------------------------+------------+
[cent@dlp ~(keystone)]$
openstack server start CentOS-St-8 # confirm access Path [cent@dlp ~(keystone)]$ manila show share01 | grep path | cut -d'|' -f3 path = 10.0.0.50:/var/lib/manila/mnt/share-5b23eb3d-f00a-46b2-a91f-6e4a257d7a0a
[cent@dlp ~(keystone)]$
ssh centos@10.0.0.253 Activate the web console with: systemctl enable --now cockpit.socket [centos@centos-st-8 ~]$ # mount Manila shared storage [centos@centos-st-8 ~]$ sudo mount -t nfs \ 10.0.0.50:/var/lib/manila/mnt/share-5b23eb3d-f00a-46b2-a91f-6e4a257d7a0a /mnt [centos@centos-st-8 ~]$ df -hT Filesystem Type Size Used Avail Use% Mounted on devtmpfs devtmpfs 971M 0 971M 0% /dev tmpfs tmpfs 989M 0 989M 0% /dev/shm tmpfs tmpfs 989M 8.5M 981M 1% /run tmpfs tmpfs 989M 0 989M 0% /sys/fs/cgroup /dev/mapper/cs-root xfs 8.0G 2.2G 5.9G 27% / /dev/vda1 xfs 1014M 221M 794M 22% /boot tmpfs tmpfs 198M 0 198M 0% /run/user/1000 10.0.0.50:/var/lib/manila/mnt/share-5b23eb3d-f00a-46b2-a91f-6e4a257d7a0a nfs4 9.8G 36M 9.3G 1% /mnt[centos@centos-st-8 ~]$ echo testfile > /mnt/testfile.txt [centos@centos-st-8 ~]$ cat /mnt/testfile.txt testfile |
Sponsored Link |