CSI
The Container Storage Interface (CSI) first made its appearance in Kubernetes v1.9 and reached General Availability (GA) in version v1.13. CSI is not just tethered to Kubernetes—it's a universal storage interface for the container ecosystem, compatible with other container orchestration systems like Mesos and Cloud Foundry.
Version information
Sidecar container versions
Container Name | Description | CSI spec | Latest Release Tag |
---|---|---|---|
external-provisioner | Watch PVC and create PV | v1.0.0 | v1.0.1 |
external-attacher | Operate VolumeAttachment | v1.0.0 | v1.0.1 |
external-snapshotter | Operate VolumeSnapshot | v1.0.0 | v1.0.1 |
node-driver-registrar | Register kubelet plugin | v1.0.0 | v1.0.2 |
cluster-driver-registrar | Register CSIDriver Object | v1.0.0 | v1.0.1 |
livenessprobe | Monitors health of CSI driver | v1.0.0 | v1.0.2 |
The Principles
Similar to CRI, CSI is implemented based on gRPC. The detailed CSI SPEC can be referred to here. It requires plugin developers to implement three gRPC services:
Identity Service: For Kubernetes to coordinate version information with CSI plugin
Controller Service: For creating, deleting, and managing Volume storage
Node Service: For mounting the Volume storage to a specified directory for Kubelet to use when creating containers (must listen on
/var/lib/kubelet/plugins/[SanitizedCSIDriverName]/csi.sock
)
Since CSI listens on a Unix socket file, kube-controller-manager can't directly call the CSI plugin. To manage the lifecycle of Volumes and to simplify the development of CSI plugins for developers, Kubernetes provides several sidecar containers and recommends deploying CSI plugins using the following method:
This deployment method includes:
StatefulSet: Ensuring only one instance is running with a replica number of 1, it contains three containers:
The CSI plugin implemented by the user
External Attacher: A sidecar container provided by Kubernetes. It listens for changes in VolumeAttachment and PersistentVolume objects and calls the CSI plugin's ControllerPublishVolume and ControllerUnpublishVolume APIs to mount or unmount the Volume to the specified Node.
External Provisioner: A sidecar container provided by Kubernetes. It listens for changes in PersistentVolumeClaim objects and calls APIs like ControllerPublish and ControllerUnpublish of the CSI plugin to manage Volumes.
Daemonset: Runs the CSI plugin on every Node so that Kubelet can call it. It contains 2 containers:
The CSI plugin implemented by the user
Driver Registrar: Registers the CSI plugin with kubelet and initiates the NodeId (i.e., adds an Annotation
csi.volume.kubernetes.io/nodeid
to the Node object)
Configuration
API Server configuration:
Controller-manager configuration:
Kubelet configuration:
Example
Kubernetes provides several CSI examples, including NFS, iSCSI, HostPath, Cinder, and FlexAdapter, among others. These examples can be used as references when creating a CSI plugin.
Name | Status | More Information |
---|---|---|
v0.2.0 | A Container Storage Interface (CSI) Storage Plug-in for Cinder | |
... and more |
Let's look at the usage of a CSI plugin, using NFS as an example.
First, you need to deploy the NFS plugin:
Then create a container using an NFS storage volume:
The example directly creates a PV to use NFS:
You can also use it with StorageClass:
Reference Documents
最后更新于