Node Disk Manager User Guide
This section provides the operations need to performed by the Admin for configuring NDM.
Admin operations#
Create blockdevice CRs for unsupported disks
Admin Operations#
Include filters#
Users can include only selected block device for the creation of blockdevice CR and then use only the created blockdevice CR for cStor pool creation or using for provisioning Local PV based on device. For including the selected blockdevices, update the operator YAML file with the required blockdevices under NDM configuration section so that only these blockdevice will be taken for the creation of blockdevice CR. Add the blockdevice path in the following configuration for specifying particular disks. This configuration must be added in openebs-ndm-config under Configmap in openebs-operator.yaml.
This change must be done in the openebs-operator.yaml file that you have downloaded before OpenEBS installation. If the change is performed after the OpenEBS installation, then user must restart corresponding NDM DaemonSet pods to update the NDM configuration.
When the above configuration is used, only the block device /dev/sda will be used for creating the block device custom resource. All other disks will be excluded.
Note:
- Regex support is not available on the
filterconfigsin NDMConfigmapand theConfigmapis applicable to cluster level. This means, if user provide/dev/sdbinfilterconfigsas an include filter, then all/dev/sdbblockdevices from all nodes in the cluster will be used for the creation of blockdevice CR by NDM.
Exclude filters#
NDM do some filtering on the disks to exclude, for example boot disk. By default, NDM excludes the following device path while creating block device CR. This configuration is added in openebs-ndm-config under Configmap in openebs-operator.yaml.
The following is the snippet of NDM configuration file from openebs operator YAML which excludes the provided disks/paths.
It is also possible to customize by adding more disk types associated with your nodes. For example, used disks, unwanted disks and so on.
This change must be done in the openebs-operator.yaml file that you have downloaded before OpenEBS installation. If the change is performed after the OpenEBS installation, then user must restart corresponding NDM DaemonSet pods to update the NDM configuration.
Note:
Regex support is not available on the
filterconfigsin NDMConfigmapand the Configmap is applicable to cluster level. This means, if user provide/dev/sdbin configmap as an excluded filter, then all/dev/sdbblockdevices from all nodes in the cluster will be excluded by NDM.It is recommended to use OpenEBS provisioner alone in the cluster. If you are using other storage provider provisioner like
gce-pdalong with OpenEBS, use exclude filters to avoid those disks from being consumed by OpenEBS. For example, if you are using thestandardstorage class in GKE with storage provisioner as kubernetes.io/gce-pd, and when it creates a PVC, a GPD is attached to the node. This GPD will be detected by NDM and it may be used by OpenEBS for provisioning volume. To avoid this scenario, it is recommended to put the associated device path created on the node in the exclude field under path-filter. If GPD is attached as/dev/sdc, then add/dev/sdcin the above mentioned field.Example snippet:
In the downloaded openebs-operator.yaml, find openebs-ndm-config configmap and update the values for path-filter and any other filters if required.
Create blockdevice CRs for unsupported disks#
Currently, NDM out of the box manages disks, partitions, lvm, crypt and other dm devices. If the user need to have blockdevice for other device types like md array or any other unsupported device types, the blockdevice resource can be manually created using the following steps:
Create the sample block device CR YAML using the following spec. Following is the sample block device CR YAML.
Modify the created block device CR sample YAML with the disk information. In the above block device CR sample spec, following fields must be filled before applying the YAML.
- name
- Provide unique name for the blockdevice CR. In the above YAML spec, given name for the blockdevice CR is
example-blockdevice-1
- Provide unique name for the blockdevice CR. In the above YAML spec, given name for the blockdevice CR is
- kubernetes.io/hostname
- Hostname of the node where the blockdevice is attached.
- storage
- Provide the storage capacity in
byteslike53687091200.
- Provide the storage capacity in
- logicalSectorSize
- logical sector size of blockdevice. For example, 512, 4096 etc. Provided 512 in the above example snippet. This value can be changed as per the logical sector size of the device.
- deviceType
- Type of the device. This can be obtained from
lsblkoutput. eg: lvm, crypt, nbd, md etc
- Type of the device. This can be obtained from
- links
- This field should be filled for by-id and by-path. These details can be obtained from worker node by running the following command
udevadm info -q property -n <device_path>
- This field should be filled for by-id and by-path. These details can be obtained from worker node by running the following command
- nodeName
- Name of the Node where the blockdevice is attached. The output of
kubectl get nodescan be used to obtain this value.
- Name of the Node where the blockdevice is attached. The output of
- path
- The value should be like
/dev/dm-0or/dev/md0.
- The value should be like
- name
Apply the modified YAML file to create the blockdevice CR for the provided device path.
Note: The blockdevice CR should be created on the same namespace where openebs is installed.
Repeat the same steps for each unsupported device and create blockdevice CR for the devices.
Verify if the blockdevice is created by running the following
kubectl get blockdevice -n openebscommand.
Note: If you are creating a block device CR for an unsupported device, then you must add the corresponding disk under exclude filter so that NDM will not select the particular disk for BD creation. See here for customizing the exclude filter in NDM configuration.