Browse by type
The official Container Storage Interface driver for Synology NAS.
Driver Name: csi.san.synology.com | Driver Version | Image | Supported K8s Version | | -------------------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------- | | v1.3.0 | synology-csi:v1.3.0 | 1.20+ |
The Synology CSI driver supports: - Access Modes: Read/Write Multiple Pods - Cloning - Expansion - Snapshot
git clone https://github.com/SynologyOpenSource/synology-csi.gitcd synology-csicp config/client-info-template.yml config/client-info.ymlEdit config/client-info.yml to configure the connection information for DSM. You can specify one or more storage systems on which the CSI volumes will be created. Change the following parameters as needed:
Install
YAML
Run ./scripts/deploy.sh run to install the driver. This will be a full deployment, which means you'll be building and running all CSI services as well as the snapshotter. If you want a basic deployment, which doesn't include installing a snapshotter, change the command as instructed below.
./scripts/deploy.sh run./scripts/deploy.sh build && ./scripts/deploy.sh install --basicIf you don’t need to build the driver locally and want to pull the image from Docker instead, run the command as instructed below.
./scripts/deploy.sh install --all./scripts/deploy.sh install --basicRunning the bash script will:
- Create a namespace named "synology-csi". This is where the driver will be installed.
- Create a secret named "client-info-secret" using the credentials from the client-info.yml you configured in the previous step.
- Build a local image and deploy the CSI driver.
- Create a default storage class named "synology-iscsi-storage" that uses the "Retain" policy.
- Create a volume snapshot class named "synology-snapshotclass" that uses the "Delete" policy. (Full deployment only)
* HELM (Local Development)
1. kubectl create ns synology-csi; kubectl label ns synology-csi pod-security.kubernetes.io/enforce=privileged --overwrite
2. kubectl create secret -n synology-csi generic client-info-secret --from-file=./config/client-info.yml
3. cd deploy/helm; make up
Check if the status of all pods of the CSI driver is Running. kubectl get pods -n synology-csi
Storage classes and the secret are required for the CSI driver to function properly. This section explains how to do the following things: 1. Create the storage system secret (This is not mandatory because deploy.sh will complete all the configurations when you configure the config file mentioned previously.) 2. Configure storageclasses 3. Configure volumesnapshotclasses
Create a secret to specify the storage system address and credentials (username and password). Usually the config file sets up the secret as well, but if you still want to create the secret or recreate it, follow the instructions below:
Edit the config file config/client-info.yml or create a new one like the example shown here:
```
clients:
``
Theclientsfield can contain more than one Synology NAS. Seperate them with a prefix-`.Create the secret using the following command (usually done by deploy.sh):
!
kubectl create secret -n <namespace> generic client-info-secret --from-file=config/client-info.yml
synology-csi. This is the default namespace. Change it to your custom namespace if needed.deploy/kubernetes/<k8s version>/ are using the secret name you set.Create and apply StorageClasses with the properties you want.
Create YAML files using the one at deploy/kubernetes/<k8s version>/storage-class.yml as the example, whose content is as below:
iSCSI Protocol
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
annotations:
storageclass.kubernetes.io/is-default-class: "false"
name: synostorage
provisioner: csi.san.synology.com
parameters:
fsType: 'btrfs'
dsm: '192.168.1.1'
location: '/volume1'
formatOptions: '--nodiscard'
reclaimPolicy: Retain
allowVolumeExpansion: true
SMB/CIFS Protocol
Before creating an SMB/CIFS storage class, you must create a secret and specify the DSM user whom you want to give permissions to.
apiVersion: v1
kind: Secret
metadata:
name: cifs-csi-credentials
namespace: default
type: Opaque
stringData:
username: <username> # DSM user account accessing the shared folder
password: <password> # DSM user password accessing the shared folder
After creating the secret, create a storage class and fill the secret for node-stage-secret. This is a required step if you're using SMB, or there will be errors when staging volumes.
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: synostorage-smb
provisioner: csi.san.synology.com
parameters:
protocol: "smb"
dsm: '192.168.1.1'
location: '/volume1'
csi.storage.k8s.io/node-stage-secret-name: "cifs-csi-credentials"
csi.storage.k8s.io/node-stage-secret-namespace: "default"
reclaimPolicy: Delete
allowVolumeExpansion: true
NFS Protocol
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: synostorage-nfs
provisioner: csi.san.synology.com
parameters:
protocol: "nfs"
dsm: "192.168.1.1"
location: '/volume1'
mountPermissions: '0755'
mountOptions:
- nfsvers=4.1
reclaimPolicy: Delete
allowVolumeExpansion: true
Configure the StorageClass properties by assigning the parameters in the table. You can also leave blank if you don’t have a preference:
| Name | Type | Description | Default | Supported protocols |
|---|---|---|---|---|
| dsm | string | The IPv4 address of your DSM, which must be included in the client-info.yml for the CSI driver to log in to DSM |
- | iSCSI, SMB, NFS |
| location | string | The location (/volume1, /volume2, ...) on DSM where the LUN for PersistentVolume will be created | - | iSCSI, SMB, NFS |
| fsType | string | The formatting file system of the PersistentVolumes when you mount them on the pods. This parameter only works with iSCSI. For SMB, the fsType is always ‘cifs‘. | 'ext4' | iSCSI |
| protocol | string | The storage backend protocol. Enter ‘iscsi’ to create LUNs, or ‘smb‘ or 'nfs' to create shared folders on DSM. | 'iscsi' | iSCSI, SMB, NFS |
| formatOptions | string | Additional options/arguments passed to mkfs.* command. See a linux manual that corresponds with your FS of choice. |
- | iSCSI |
| enableSpaceReclamation | string | Enables space reclamation for Thin Provisioned Btrfs LUNs to improve storage efficiency. May impact performance and space display. | 'false' | iSCSI |
| enableFuaSyncCache | string | Enables FUA and Sync Cache SCSI commands for LUNs. | 'false' | iSCSI |
| csi.storage.k8s.io/node-stage-secret-name | string | The name of node-stage-secret. Required if DSM shared folder is accessed via SMB. | - | SMB |
| csi.storage.k8s.io/node-stage-secret-namespace | string | The namespace of node-stage-secret. Required if DSM shared folder is accessed via SMB. | - | SMB |
| mountPermissions | string | Mounted folder permissions. If set as non-zero, driver will perform chmod after mount |
'0750' | NFS |
Notice
Apply the YAML files to the Kubernetes cluster.
kubectl apply -f <storageclass_yaml>
Create and apply VolumeSnapshotClasses with the properties you want.
Create YAML files using the one at deploy/kubernetes/<k8s version>/snapshotter/volume-snapshot-class.yml as the example, whose content is as below:
``` apiVersion: snapshot.storage.k8s.io/v1beta1 # v1 for kubernetes v1.20 and above kind: VolumeSnapshotClass metadata: name: synology-snapshotclass annotations: storageclass.kubernetes.io/is-default-class: "false" driver: csi.san.synology.com deletionPolicy: Delete
```
Configure volume snapshot class properties by assigning the following parameters, all parameters are optional:
| Name | Type | Description | Default | Supported protocols |
|---|---|---|---|---|
| description | string | The description of the snapshot on DSM | "" | iSCSI |
| is_locked | string | Whether you want to lock the snapshot on DSM | 'false' | iSCSI, SMB, NFS |
Apply the YAML files to the Kubernetes cluster.
kubectl apply -f <volumesnapshotclass_yaml>
By default, the CSI driver will pull the latest image from Docker Hub.
If you want to use images you built locally for installation, edit all files under deploy/kubernetes/<k8s version>/ and make sure imagePullPolicy: IfNotPresent is included in every csi-plugin container.
make.make synocli. The output binary will be at bin/synocli.make test.$ claude mcp add synology-csi \
-- python -m otcore.mcp_server <graph>