Skip to content
forked from minio/directpv

Container Storage Interface (CSI) driver for Direct Attached Storage (DAS)

License

Notifications You must be signed in to change notification settings

gbritton/directpv

This branch is 1 commit ahead of, 199 commits behind minio/directpv:master.

Folders and files

NameName
Last commit message
Last commit date
Sep 22, 2022
Sep 6, 2022
Sep 6, 2022
Aug 12, 2022
Sep 22, 2022
Sep 6, 2022
Sep 22, 2022
Jan 11, 2022
Aug 2, 2022
May 17, 2022
Jan 29, 2021
Aug 30, 2022
Aug 30, 2022
Jun 21, 2020
Jan 18, 2022
Jan 4, 2022
Apr 20, 2022
Mar 10, 2022
Jan 26, 2021
Dec 25, 2020
Sep 6, 2022
Sep 6, 2022
Jan 18, 2022
Jan 4, 2022
Jun 14, 2022
Jan 4, 2022
Jul 21, 2022
Mar 22, 2021
Mar 10, 2022

Repository files navigation

DirectPV

DirectPV is a CSI driver for Direct Attached Storage. In a simpler sense, it is a distributed persistent volume manager, and not a storage system like SAN or NAS. It is useful to discover, format, mount, schedule and monitor drives across servers. Since Kubernetes hostPath and local PVs are statically provisioned and limited in functionality, DirectPV was created to address this limitation.

Distributed data stores such as object storage, databases and message queues are designed for direct attached storage, and they handle high availability and data durability by themselves. Running them on traditional SAN or NAS based CSI drivers (Network PV) adds yet another layer of replication/erasure coding and extra network hops in the data path. This additional layer of disaggregation results in increased-complexity and poor performance.

Architecture Diagram

Architecture

DirectPV is designed to be lightweight and scalable to 10s of 1000s of drives. It is made up of three components - Controller, Node Driver, UI

DirectPV Architecture

Controller

When a volume claim is made, the controller provisions volumes uniformly from a pool free drives. DirectPV is aware of pod's affinity constraints, and allocates volumes from drives local to pods. Note that only one active instance of controller runs per cluster.

Node Driver

Node Driver implements the volume management functions such as discovery, format, mount, and monitoring of drives on the nodes. One instance of node driver runs on each of the storage servers.

UI

Storage Administrators can use the kubectl CLI plugin to select, manage and monitor drives. Web based UI is currently under development.

Installation

# Install kubectl directpv plugin
kubectl krew install directpv

# Use the plugin to install directpv in your kubernetes cluster
kubectl directpv install

# Ensure directpv has successfully started
kubectl directpv info

# List available drives in your cluster
kubectl directpv drives ls

# Select drives that directpv should manage and format
kubectl directpv drives format --drives /dev/sd{a...f} --nodes directpv-{1...4}

# 'directpv' can now be specified as the storageclass in PodSpec.VolumeClaimTemplates

For air-gapped setups and advanced installations, please refer to the Installation Guide.

Upgrade

DirectPV version upgrades are seameless and transparent. Simply uninstall an existing version of directpv and install with a newer version to upgrade.

# Uninstall directpv
kubectl directpv uninstall 

# Download latest krew plugin
kubectl krew upgrade directpv

# Install using new plugin
kubectl directpv install

Security

Please review the security checklist before deploying to production.

Important: Report security issues to [email protected]. Please do not report security issues here.

Additional Resources

Join Community

DirectPV is a MinIO project. You can contact the authors over the slack channel:

License

DirectPV is released under GNU AGPLv3 license. Please refer to the LICENSE document for a complete copy of the license.

About

Container Storage Interface (CSI) driver for Direct Attached Storage (DAS)

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 96.2%
  • Shell 3.3%
  • Other 0.5%