Questo contenuto non è disponibile nella lingua selezionata.
Chapter 3. Post-deployment configuration
You must complete some post-deployment configuration tasks before you create NFS shares, grant user access, and mount NFS shares.
- Map the Networking service (neutron) storage network to the isolated data center storage network.
- Make the storage provider network available to trusted tenants only through custom role based access control (RBAC). Do not share the storage provider network globally.
- Create a private share type.
- Grant access to specific trusted tenants.
After you complete these steps, the tenant compute instances can create, allow access to, and mount native CephFS shares.
3.1. Creating the storage provider network Copia collegamentoCollegamento copiato negli appunti!
You must map the new isolated storage network to a Networking (neutron) provider network. The Compute VMs attach to the network to access native CephFS share export locations.
For information about network security with the Shared File Systems service, see Hardening the Shared File Systems Service in the Security and Hardening Guide.
Procedure
The openstack network create command defines the configuration for the storage neutron network.
From an undercloud node, enter the following command:
source ~/overcloudrc
[stack@undercloud ~]$ source ~/overcloudrcCopy to Clipboard Copied! Toggle word wrap Toggle overflow On an undercloud node, create the storage network:
openstack network create Storage --provider-network-type vlan --provider-physical-network datacentre --provider-segment 30
(overcloud) [stack@undercloud-0 ~]$ openstack network create Storage --provider-network-type vlan --provider-physical-network datacentre --provider-segment 30Copy to Clipboard Copied! Toggle word wrap Toggle overflow You can enter this command with the following options:
-
For the
--provider-physical-networkoption, use the default valuedatacentre, unless you set another tag for the br-isolated bridge through NeutronBridgeMappings in your tripleo-heat-templates. -
For the
--provider-segmentoption, use the value set for the Storage isolated network in your network environment file. If this was not customized, the default environment file is/usr/share/openstack-tripleo-heat-templates/network_data.yaml. The VLAN associated with the Storage network value is30unless you modified the isolated network definitions. -
For the
--provider-network-typeoption, use the valuevlan.
-
For the
3.2. Configuring the storage provider network Copia collegamentoCollegamento copiato negli appunti!
Create a corresponding StorageSubnet on the neutron provider network. Ensure that the subnet is the same for the storage_subnet in the undercloud, and that the allocation range for the storage subnet and the corresponding undercloud subnet do not overlap.
Requirements
- The starting and ending IP range for the allocation pool
- The subnet IP range
Procedure
From an undercloud node, enter the following command:
source ~/overcloudrc
[stack@undercloud ~]$ source ~/overcloudrcCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the sample command to provision the network. Update the values to suit your environment.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
For the
--allocation-pooloption, replace thestart=172.17.3.10,end=172.17.3.149IP values with the IP values for your network. -
For the
--subnet-rangeoption, replace the172.17.3.0/24subnet range with the subnet range for your network.
-
For the
3.3. Configuring role-based access control for the storage provider network Copia collegamentoCollegamento copiato negli appunti!
After you identify the trusted tenants or projects that can use the storage network, configure role-based access control (RBAC) rules for them through the Networking service (neutron).
Requirements
Names of the projects that need access to the storage network
Procedure
From an undercloud node, enter the following command:
source ~/overcloudrc
[stack@undercloud ~]$ source ~/overcloudrcCopy to Clipboard Copied! Toggle word wrap Toggle overflow Identify the projects that require access:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create network RBAC rules with the desired projects:
openstack network rbac create \ --action access_as_shared Storage \ --type network \ --target-project demo
(overcloud) [stack@undercloud-0 ~]$ openstack network rbac create \ --action access_as_shared Storage \ --type network \ --target-project demoCopy to Clipboard Copied! Toggle word wrap Toggle overflow Repeat this step for all of the projects that require access to the storage network.