![Image](https://img.shields.io/docker/pulls/democraticcsi/democratic-csi.svg) ![Image](https://img.shields.io/github/workflow/status/democratic-csi/democratic-csi/CI?style=flat-square) # Introduction `democratic-csi` implements the `csi` (container storage interface) spec providing storage for various container orchestration systems (ie: Kubernetes). The current focus is providing storage via iscsi/nfs from zfs-based storage systems, predominantly `FreeNAS / TrueNAS` and `ZoL` on `Ubuntu`. The current drivers implement the depth and breadth of the `csi` spec, so you have access to resizing, snapshots, clones, etc functionality. `democratic-csi` is 2 things: - several implementations of `csi` drivers - `freenas-nfs` (manages zfs datasets to share over nfs) - `freenas-iscsi` (manages zfs zvols to share over iscsi) - `freenas-smb` (manages zfs datasets to share over smb) - `zfs-generic-nfs` (works with any ZoL installation...ie: Ubuntu) - `zfs-generic-iscsi` (works with any ZoL installation...ie: Ubuntu) - `zfs-local-ephemeral-inline` (provisions node-local zfs datasets) - `nfs-client` (crudely provisions storage using a shared nfs share/directory for all volumes) - framework for developing `csi` drivers If you have any interest in providing a `csi` driver, simply open an issue to discuss. The project provides an extensive framework to build from making it relatively easy to implement new drivers. # Installation Predominantly 3 things are needed: - node prep (ie: your kubernetes cluster nodes) - server prep (ie: your storage server) - deploy the driver into the cluster (`helm` chart provided with sample `values.yaml`) ## Guides - https://jonathangazeley.com/2021/01/05/using-truenas-to-provide-persistent-storage-for-kubernetes/ - https://gist.github.com/admun/4372899f20421a947b7544e5fc9f9117 (migrating from `nfs-client-provisioner` to `democratic-csi`) ## Node Prep You should install/configure the requirements for both nfs and iscsi. ### nfs ``` RHEL / CentOS sudo yum install -y nfs-utils Ubuntu / Debian sudo apt-get install -y nfs-common ``` ### iscsi Note that `multipath` is supported for the `iscsi`-based drivers. Simply setup multipath to your liking and set multiple portals in the config as appropriate. If you are running Kubernetes with rancher/rke please see the following: - https://github.com/rancher/rke/issues/1846 ``` RHEL / CentOS # Install the following system packages sudo yum install -y lsscsi iscsi-initiator-utils sg3_utils device-mapper-multipath # Enable multipathing sudo mpathconf --enable --with_multipathd y # Ensure that iscsid and multipathd are running sudo systemctl enable iscsid multipathd sudo systemctl start iscsid multipathd # Start and enable iscsi sudo systemctl enable iscsi sudo systemctl start iscsi Ubuntu / Debian # Install the following system packages sudo apt-get install -y open-iscsi lsscsi sg3-utils multipath-tools scsitools # Enable multipathing sudo tee /etc/multipath.conf <<-'EOF' defaults { user_friendly_names yes find_multipaths yes } EOF sudo systemctl enable multipath-tools.service sudo service multipath-tools restart # Ensure that open-iscsi and multipath-tools are enabled and running sudo systemctl status multipath-tools sudo systemctl enable open-iscsi.service sudo service open-iscsi start sudo systemctl status open-iscsi ``` ### freenas-smb If using with Windows based machines you may need to enable guest access (even if you are connecting with credentials) ``` Set-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters AllowInsecureGuestAuth -Value 1 Restart-Service LanmanWorkstation -Force ``` ### zfs-local-ephemeral-inline This `driver` provisions node-local ephemeral storage on a per-pod basis. Each node should have an identically named zfs pool created and avaialble to the `driver`. Note, this is _NOT_ the same thing as using the docker zfs storage driver (although the same pool could be used). No other requirements are necessary. - https://github.com/kubernetes/enhancements/blob/master/keps/sig-storage/20190122-csi-inline-volumes.md - https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html ## Server Prep Server preparation depends slightly on which `driver` you are using. ### FreeNAS (freenas-nfs, freenas-iscsi, freenas-smb) The recommended version of FreeNAS is 12.0-U2+, however the driver should work with much older versions as well. Ensure the following services are configurged and running: - ssh (if you use a password for authentication make sure it is allowed) - ensure `zsh`, `bash`, or `sh` is set as the root shell, `csh` gives false errors due to quoting - nfs - iscsi - (fixed in 12.0-U2+) when using the FreeNAS API concurrently the `/etc/ctl.conf` file on the server can become invalid, some sample scripts are provided in the `contrib` directory to clean things up ie: copy the script to the server and directly and run - `./ctld-config-watchdog-db.sh | logger -t ctld-config-watchdog-db.sh &` please read the scripts and set the variables as appropriate for your server. - ensure you have pre-emptively created portals, initatior groups, auths - make note of the respective IDs (the true ID may not reflect what is visible in the UI) - IDs can be visible by clicking the the `Edit` link and finding the ID in the browser address bar - Optionally you may use the following to retrieve appropiate IDs: - `curl --header "Accept: application/json" --user root: 'http(s):///api/v2.0/iscsi/portal'` - `curl --header "Accept: application/json" --user root: 'http(s):///api/v2.0/iscsi/initiator'` - `curl --header "Accept: application/json" --user root: 'http(s):///api/v2.0/iscsi/auth'` - smb In addition, if you want to use a non-root user for the ssh operations you may create a `csi` user and then run `visudo` directly from the console. Make sure the line for the `csi` user has `NOPASSWD` added (note this can get reset by FreeNAS if you alter the user via the GUI later): ``` csi ALL=(ALL) NOPASSWD:ALL ``` Starting with TrueNAS CORE 12 it is also possible to use an `apiKey` instead of the `root` password for the http connection. Issues to review: - https://jira.ixsystems.com/browse/NAS-108519 - https://jira.ixsystems.com/browse/NAS-108520 - https://jira.ixsystems.com/browse/NAS-108521 - https://jira.ixsystems.com/browse/NAS-108522 - https://jira.ixsystems.com/browse/NAS-107219 ### ZoL (zfs-generic-nfs, zfs-generic-iscsi) Ensure ssh and zfs is installed on the nfs/iscsi server and that you have installed `targetcli`. - `sudo yum install targetcli -y` - `sudo apt-get -y install targetcli-fb` ## Helm Installation ``` helm repo add democratic-csi https://democratic-csi.github.io/charts/ helm repo update # helm v2 helm search democratic-csi/ # helm v3 helm search repo democratic-csi/ # copy proper values file from https://github.com/democratic-csi/charts/tree/master/stable/democratic-csi/examples # edit as appropriate # examples are from helm v2, alter as appropriate for v3 # add --create-namespace for helm v3 helm upgrade \ --install \ --values freenas-iscsi.yaml \ --namespace democratic-csi \ zfs-iscsi democratic-csi/democratic-csi helm upgrade \ --install \ --values freenas-nfs.yaml \ --namespace democratic-csi \ zfs-nfs democratic-csi/democratic-csi ``` ### A note on non standard kubelet paths Some distrobutions, such as `minikube` and `microk8s` use a non-standard kubelet path. In such cases it is necessary to provide a new kubelet host path, microk8s example below: ```bash microk8s helm upgrade \ --install \ --values freenas-nfs.yaml \ --set node.kubeletHostPath="/var/snap/microk8s/common/var/lib/kubelet" \ --namespace democratic-csi \ zfs-nfs democratic-csi/democratic-csi ``` ### openshift `democratic-csi` generally works fine with openshift. Some special parameters need to be set with helm (support added in chart version `0.6.1`): ``` # for sure required --set node.rbac.openshift.privileged=true --set node.driver.localtimeHostPath=false # unlikely, but in special circumstances may be required --set controller.rbac.openshift.privileged=true ``` ### Nomad `democratic-csi` works with Nomad in a functioning but limted capacity. See the [Nomad docs](docs/nomad.md) for details. ## Multiple Deployments You may install multiple deployments of each/any driver. It requires the following: - Use a new helm release name for each deployment - Make sure you have a unique `csiDriver.name` in the values file - Use unqiue names for your storage classes (per cluster) - Use a unique parent dataset (ie: don't try to use the same parent across deployments or clusters) # Snapshot Support Install beta (v1.17+) CRDs (once per cluster): - https://github.com/kubernetes-csi/external-snapshotter/tree/master/client/config/crd ``` kubectl apply -f snapshot.storage.k8s.io_volumesnapshotclasses.yaml kubectl apply -f snapshot.storage.k8s.io_volumesnapshotcontents.yaml kubectl apply -f snapshot.storage.k8s.io_volumesnapshots.yaml ``` Install snapshot controller (once per cluster): - https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/snapshot-controller ``` # replace namespace references to your liking kubectl apply -f rbac-snapshot-controller.yaml kubectl apply -f setup-snapshot-controller.yaml ``` Install `democratic-csi` as usual with `volumeSnapshotClasses` defined as appropriate. - https://kubernetes.io/docs/concepts/storage/volume-snapshots/ - https://github.com/kubernetes-csi/external-snapshotter#usage # Migrating from freenas-provisioner and freenas-iscsi-provisioner It is possible to migrate all volumes from the non-csi freenas provisioners to `democratic-csi`. Copy the `contrib/freenas-provisioner-to-democratic-csi.sh` script from the project to your workstation, read the script in detail, and edit the variables to your needs to start migrating! # Sponsors A special shout out to the wonderful sponsors of the project! [![ixSystems](https://www.ixsystems.com/wp-content/uploads/sites/13/2015/08/ix_logo_200x47.png "ixSystems")](http://ixsystems.com/) # Related - https://github.com/nmaupu/freenas-provisioner - https://github.com/travisghansen/freenas-iscsi-provisioner - https://datamattsson.tumblr.com/post/624751011659202560/welcome-truenas-core-container-storage-provider