Skip to content

testwill/node-disk-manager

This branch is 2 commits ahead of openebs-archive/node-disk-manager:develop.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3582866 · Aug 2, 2023
Feb 9, 2023
Apr 29, 2021
Aug 2, 2023
Jul 7, 2021
Jan 14, 2021
Dec 12, 2022
Feb 9, 2023
Aug 1, 2023
Dec 12, 2022
Feb 9, 2023
Sep 9, 2021
Jul 7, 2021
Aug 1, 2023
Dec 12, 2022
Aug 1, 2023
Jul 30, 2020
Dec 12, 2022
Feb 9, 2023
Feb 9, 2023
Aug 30, 2018
Jul 12, 2022
Sep 14, 2021
Mar 16, 2018
Apr 21, 2020
Jul 7, 2021
Dec 2, 2021
May 8, 2019
Jul 7, 2021
Sep 14, 2021
Sep 14, 2021
Sep 14, 2021
Sep 17, 2021
Sep 14, 2021
Feb 9, 2023
Feb 9, 2023
Jul 30, 2020

Repository files navigation

node-disk-manager

Build Status Codacy Badge Go Report codecov Slack BCH compliance FOSSA Status CII Best Practices

node-disk-manager (NDM) aims to make it easy to manage the disks attached to the node. It treats disks as resources that need to be monitored and managed just like other resources like CPU, Memory and Network. It contains a daemon which runs on each node, detects attached disks and loads them as BlockDevice objects (custom resource) into Kubernetes.

While PVs are well suited for stateful workloads, the BlockDevice objects are aimed towards helping hyper-converged Storage Operators by providing abilities like:

  • Easy to access inventory of block devices available across the Kubernetes Cluster.
  • Predict failures on the blockdevices, to help with taking preventive actions.
  • Allow for dynamically attaching/detaching blockdevices to a Storage Pod, without requiring a restart.

NDM has 2 main components:

  • node-disk-manager daemonset, which runs on each node and is responsible for device detection.
  • node-disk-operator deployment, which acts as an inventory of block devices in the cluster.

and 2 optional components:

  • ndm-cluster-exporter deployment, which fetches block device object from etcd and exposes it as prometheus metrics.
  • ndm-node-exporter daemonset, which runs on each node, queries the disk for details like SMART and expose it as prometheus metrics.

The design of the project is covered under this design proposal

The feedback of users / organizations currently using OpenEBS can be found here

Project Status

Currently, the NDM project is in beta.

Usage

A detailed usage documentation is maintained in the wiki.

Minimum Supported version

K8S : 1.18+

Start Node Disk Manager

  • Edit ndm-operator.yaml to fit your environment: Set the namespace, serviceAccount, configure filters in the node-disk-manager-config-map.
  • Switch to Cluster Admin context and create the components with kubectl create -f ndm-operator.yaml.
  • This will install the daemon, operator and the exporters

Using kubectl to fetch BlockDevice Information

  • kubectl get blockdevices displays the blockdevices across the cluster, with NODENAME showing the node to which disk is attached, CLAIMSTATE showing whether the device is currently in use and STATE showing whether the device is connected to the node.
  • kubectl get blockdevices -o wide displays the blockdevice along with the path at which the device is attached on the node.
  • kubectl get blockdevices <blockdevice-cr-name> -o yaml displays all the details of the disk captured by ndm for given disk resource.

Building, Testing and Pushing Image

Before building the image locally, you need to setup your development environment. The detailed instructions for setting up development environment, building and testing are available here.

Contributing

OpenEBS welcomes your feedback and contributions in any form possible.

License

FOSSA Status

Inspiration

About

Kubernetes Storage Device Management

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 95.6%
  • Shell 1.8%
  • Makefile 1.3%
  • Other 1.3%