Enable CSI Snapshot Creation on a Cluster
Prerequisites
It is the responsibility of the Kubernetes distribution to deploy the snapshot controller as well as the related custom resource definitions.
For more information, see CSI Volume Snapshots.
If your Kubernetes Distribution Does Not Bundle the Snapshot Controller
You may manually install these components.
Prerequisites
Please install the same release version of snapshot CRDs and snapshot controller to ensure that the CRD version is compatible with the snapshot controller.
For general use, update the snapshot controller YAMLs with an appropriate namespace prior to installing.
For example, on a vanilla Kubernetes cluster, update the namespace from default to kube-system prior to issuing the kubectl create command.
Install the Snapshot CRDs
- 
Download the files from https://github.com/kubernetes-csi/external-snapshotter/tree/v8.3.0/client/config/crd because SUSE Storage v1.9.2 uses CSI external-snapshotter v8.3.0 
- 
Run kubectl create -k client/config/crd.
- 
Do this once per cluster. 
Install the Common Snapshot Controller
- 
Download the files from https://github.com/kubernetes-csi/external-snapshotter/tree/v8.3.0/deploy/kubernetes/snapshot-controller because SUSE Storage v1.9.2 uses CSI external-snapshotter v8.3.0 
- 
Update the namespace to an appropriate value for your environment (for example, kube-system)
- 
Run kubectl create -k deploy/kubernetes/snapshot-controller.
- 
Do this once per cluster. Previously, the snapshot controller YAML files were deployed into the defaultnamespace by default. The updated YAML files are being deployed intokube-systemnamespace by default. Therefore, we suggest deleting the previous snapshot controller in thedefaultnamespace to avoid having multiple snapshot controllers.
See the Usage section from the kubernetes external-snapshotter git repo for additional information.