Kubernetes Storage Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 35: Line 35:


=API Resources=
=API Resources=
The [[#Persistent_Volume_Subsystem|persistent volume subsystem]] consists of the following primitive:
==<span id='PersistentVolume'></span><span id='PV'></span>PersistentVolume (PV)==
==<span id='PersistentVolume'></span><span id='PV'></span>PersistentVolume (PV)==
==<span id='PersistentVolumeClaim'></span><span id='PVC'></span>PersistentVolumeClaim (PVC)==
==<span id='PersistentVolumeClaim'></span><span id='PVC'></span>PersistentVolumeClaim (PVC)==

Revision as of 01:56, 10 December 2019

Internal

Overview

Kubernetes has a mature and feature-rich subsystem called the persistent volume subsystem. Regardless of where it comes from, storage is exposed to the Kubernetes cluster in the form of a volume.

Storage Providers

Storage is exposed to a Kubernetes cluster by storage providers.

The Kubernetes persistent volume subsystem supports, among others:

Each storage provider has its own plugin that handles the details of exposing the storage to the Kubernetes cluster.

Storage Plugin

The terms "storage plugin" and "provisioner" are used interchangeably.

Old storage plugins used to be implemented as part of the main Kubernetes code tree (in-tree), which raised a series of problems, such as that all had to be open-source and their release cycle was tied to the Kubernetes release cycle.

Newer plugins are based on the Container Storage Interface (CSI).

Container Storage Interface (CSI)

Container Storage Interface (CSI) is an open standard that provides a clean interface for storage plugins and abstracts the internal Kubernetes storage details.

API Resources

The persistent volume subsystem consists of the following primitive:

PersistentVolume (PV)

PersistentVolumeClaim (PVC)

StorageClass (SC)

Volume

Secrets may be exposed as files in dedicated volumes mounted in the pod.

Volume Type

Dynamic Volume Provisioning

Dynamic volume provisioner https://kubernetes.io/docs/concepts/storage/dynamic-provisioning/

Organizatorium