Home

Awesome

FastCFS-CSI

English | 简体中文

Overview

The FastCFS Container Storage Interface (CSI) Driver provides a CSI interface used by Container Orchestrators to manage the lifecycle of FastCFS volumes.

Project status

Status: beta

Features

Note fastcfs-csi does not supports deletion for static PV. persistentVolumeReclaimPolicy in PV spec must be set to Retain to avoid PV delete attempt in csi-provisioner.

FastCFS CSI Driver on Kubernetes

Following sections are Kubernetes specific. If you are Kubernetes user, use followings for driver features, installation steps and examples.

FastCFS Version Compatibility Matrix

FastCFS CSI DriverFastCFS Version
v0.4.6-fastcfs5.3.0-1v5.3.0
v0.4.6-fastcfs5.2.0-1v5.2.0
v0.4.6-fastcfs5.1.0-1v5.1.0
v0.4.6-fastcfs5.0.0-1v5.0.0
v0.4.6-fastcfs4.2.0-1v4.2.0
v0.4.6-1fastcfs4.1.0v4.1.0
v0.4.6-3fastcfs4.0.0v4.0.0
v0.4.6-1fastcfs3.7.1v3.7.1
v0.4.5v3.6.3
v0.4.3v3.6.0
v0.4.2v3.5.0
v0.4.0v3.3.0

Kubernetes Version Compatibility Matrix

FastCFS CSI Driver \ Kubernetes Versionv1.17v1.18+
master branch?yes
v0.4.0?yes

Prerequisites

Installation

Set up driver permission

The driver requires FastCFS secret to talk to FastCFS to manage the volume on user's behalf. There is a method to grant driver permission:

curl https://raw.githubusercontent.com/happyfish100/fastcfs-csi/master/deploy/kubernetes/secret.yaml > secret.yaml
# Edit the secret with user credentials
kubectl apply -f secret.yaml

Then reference this key in your storage class.

Config node toleration settings

By default, driver tolerates taint CriticalAddonsOnly and has tolerationSeconds configured as 300, to deploy the driver on any nodes, please set helm Value.node.tolerateAllTaints to true before deployment

Deploy driver

Please see the compatibility matrix above before you deploy the driver

deploy

Deploy using kustomization file

kubectl apply -k "github.com/happyfish100/fastcfs-csi/deploy/kubernetes/overlays/dev/?ref=main"

Alternatively, you could also install the driver using helm:

Add the fastcfs-csi Helm repository:

helm repo add fastcfs-csi https://happyfish100.github.io/fastcfs-csi
helm repo update

Then install a release of the driver using the chart

helm upgrade --install fastcfs-csi fastcfs-csi/fcfs-csi-driver
edit FastCFS Config

Update FastCFS Config, modify host(data.fdir-cluster.host, data.fstore-cluster.host, data.auth-cluster.host) or more configuration. For more, see FastCFS Config Example

kubectl edit configmap fastcfs-client-config

Verify driver is running:

kubectl get pods

Deploy driver with debug mode

To view driver debug logs, run the CSI driver with -v=5 command line option

Examples

Make sure you follow the Prerequisites before the examples:

CSI spec and Kubernetes version compatibility

Please refer to the matrix in the Kubernetes documentation.

Development

Please go through CSI Spec and General CSI driver development guideline to get some basic understanding of CSI driver before you start.

Requirements

Dependency

Dependencies are managed through go module. To build the project, first turn on go mod using export GO111MODULE=on, then build the project using: make

Testing

Build Container Image

Helm and manifests

The helm chart for this project is in the charts/fcfs-csi-driver directory. The manifests for this project are in the deploy/kubernetes directory. All the manifests except kustomize patches are generated by running helm template. This keeps the helm chart and the manifests in sync.

When updating the helm chart: