Skip to content

Commit b2fd69f

Browse files
committed
Update README
1 parent 53469c2 commit b2fd69f

File tree

1 file changed

+112
-33
lines changed

1 file changed

+112
-33
lines changed

README.md

+112-33
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,145 @@
1+
[![Build Status](https://travis-ci.org/kubernetes-csi/external-snapshotter.svg?branch=master)](https://travis-ci.org/kubernetes-csi/external-snapshotter)
2+
13
# CSI Snapshotter
24

3-
The CSI external-snapshotter is part of Kubernetes implementation of [Container Storage Interface (CSI)](https://github.com/container-storage-interface/spec).
5+
The CSI snapshotter is part of Kubernetes implementation of [Container Storage Interface (CSI)](https://github.com/container-storage-interface/spec).
6+
7+
The volume snapshot feature supports CSI v1.0 and higher. It was introduced as an Alpha feature in Kubernetes v1.12 and has been promoted to an Beta feature in Kubernetes 1.17.
48

5-
The volume snapshot feature supports CSI v1.0 and it has been an Alpha feature in Kubernetes since v1.12.
69

710
## Overview
811

9-
CSI Snapshotter is an external controller that watches Kubernetes Snapshot CRD objects and triggers CreateSnapshot/DeleteSnapshot against a CSI endpoint. Full design can be found at Kubernetes proposal at [here](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/storage/csi-snapshot.md)
12+
With the promotion of Volume Snapshot to beta, the feature is now enabled by default on standard Kubernetes deployments instead of being opt-in.
1013

11-
## Design
14+
The move of the Kubernetes Volume Snapshot feature to beta also means:
15+
* A revamp of volume snapshot APIs.
16+
* The CSI external-snapshotter sidecar is split into two controllers, a snapshot controller and a CSI external-snapshotter sidecar.
17+
18+
The snapshot controller is deployed by the Kubernetes distributions and is responsible for watching the VolumeSnapshot CRD objects.
19+
20+
The CSI external-snapshotter sidecar watches Kubernetes VolumeSnapshotContent CRD objects and triggers CreateSnapshot/DeleteSnapshot against a CSI endpoint.
21+
22+
Blog post for the beta feature can be found [here](https://kubernetes.io/blog/2019/12/09/kubernetes-1-17-feature-cis-volume-snapshot-beta)
1223

13-
External snapshotter follows [controller](https://github.com/kubernetes/community/blob/master/contributors/devel/controllers.md) pattern and uses informers to watch for `VolumeSnapshot` and `VolumeSnapshotContent` create/update/delete events. It filters out these objects with `Snapshotter==<CSI driver name>` specified in the associated VolumeSnapshotClass object and then processes these events in workqueues with exponential backoff.
1424

15-
### Snapshotter
25+
## Compatibility
1626

17-
Snapshotter talks to CSI over socket (/run/csi/socket by default, configurable by -csi-address). The snapshotter then:
27+
This information reflects the head of this branch.
1828

19-
* Discovers the supported snapshotter name by `GetDriverName` call.
29+
| Compatible with CSI Version | Container Image | Min K8s Version |
30+
| ------------------------------------------------------------------------------------------ | ----------------------------| --------------- |
31+
| [CSI Spec v1.0.0](https://github.com/container-storage-interface/spec/releases/tag/v1.0.0) | quay.io/k8scsi/csi-snapshotter | 1.17 |
32+
| ------------------------------------------------------------------------------------------ | ----------------------------| --------------- |
33+
| [CSI Spec v1.0.0](https://github.com/container-storage-interface/spec/releases/tag/v1.0.0) | quay.io/k8scsi/snapshot-controller | 1.17 |
34+
35+
36+
## Feature Status
37+
38+
The `VolumeSnapshotDataSource` feature gate was introduced in Kubernetes 1.12 and it is enabled by default in Kubernetes 1.17 when the volume snapshot feature is promoted to beta.
39+
40+
## Design
2041

21-
* Uses ControllerGetCapabilities for find out if CSI driver supports `ControllerServiceCapability_RPC_CREATE_DELETE_SNAPSHOT` and `ControllerServiceCapability_RPC_LIST_SNAPSHOTS` calls. Otherwise, the controller will not start.
42+
Both the snapshot controller and CSI external-snapshotter sidecar follow [controller](https://github.com/kubernetes/community/blob/master/contributors/devel/controllers.md) pattern and uses informers to watch for events. The snapshot controller watches for `VolumeSnapshot` and `VolumeSnapshotContent` create/update/delete events.
2243

23-
* Processes new/updated/deleted `VolumeSnapshots`: The snapshotter only processes `VolumeSnapshot` that has `snapshotter` specified in its `VolumeSnapshotClass` matches its driver name. The process workflow is as follows
24-
* If the snapshot status is `Ready`, the controller checks whether the snapshot and its content still binds correctly. If there is any problem with the binding (e.g., snapshot points to a non-exist snapshot content), update the snapshot status and emit event.
25-
* If the snapshot status is not ready, there are two cases.
26-
* `SnapshotContentName` is not empty: the controller verifies whether the snapshot content exists and also binds to the snapshot. If verification passes, the controller binds the snapshot and its content objects and marks it is ready. Otherwise, it updates the error status of the snapshot.
27-
* `SnapshotContentName` is set empty: the controller will first check whether there is already a content object which binds the snapshot correctly with snapshot uid (`VolumeSnapshotRef.UID`) specified. If so, the controller binds these two objects. Otherwise, the controller issues a create snapshot operation. Please note that if the error status shows that snapshot creation already failed before, it will not try to create snapshot again.
44+
The CSI external-snapshotter sidecar only watches for `VolumeSnapshotContent` create/update/delete events. It filters out these objects with `Driver==<CSI driver name>` specified in the associated VolumeSnapshotClass object and then processes these events in workqueues with exponential backoff.
2845

29-
* Processes new/updated/deleted `VolumeSnapshotContents`: The snapshotter only processes `VolumeSnapshotContent` in which the CSI driver specified in the spec matches the controller's driver name.
30-
* If the `VolumeSnapshotRef` is set to nil, skip this content since it is not bound to any snapshot object.
31-
* Otherwise, the controller verifies whether the content object is correctly bound to a snapshot object. In case the `VolumeSnapshotRef.UID` is set but it does not match its snapshot object or snapshot no long exists, the content object and its associated snapshot will be deleted.
46+
The CSI external-snapshotter sidecar talks to CSI over socket (/run/csi/socket by default, configurable by -csi-address).
3247

3348
## Usage
3449

35-
### Running on command line
50+
The Volume Snapshot feature now depends on a new, volume snapshot controller in addition to the volume snapshot CRDs. Both the volume snapshot controller and the CRDs are independent of any CSI driver. Regardless of the number CSI drivers deployed on the cluster, there must be only one instance of the volume snapshot controller running and one set of volume snapshot CRDs installed per cluster.
3651

37-
For debugging, it is possible to run snapshotter on command line. For example,
52+
Therefore, it is strongly recommended that Kubernetes distributors bundle and deploy the controller and CRDs as part of their Kubernetes cluster management process (independent of any CSI Driver).
3853

39-
```bash
40-
csi-snapshotter -kubeconfig ~/.kube/config -v 5 -csi-address /run/csi/socket
41-
```
54+
If your cluster does not come pre-installed with the correct components, you may manually install these components by executing the following steps.
4255

43-
### Running in a statefulset
56+
Install Snapshot Beta CRDs:
57+
* kubectl create -f config/crd
58+
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/config/crd
59+
* Do this once per cluster
4460

45-
It is necessary to create a new service account and give it enough privileges to run the snapshotter. We provide .yaml files that deploy for use together with the hostpath example driver. A real production deployment must customize them:
61+
Install Common Snapshot Controller:
62+
* kubectl create -f deploy/kubernetes/snapshot-controller
63+
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/snapshot-controller
64+
* Do this once per cluster
4665

47-
```bash
48-
for i in $(find deploy/kubernetes -name '*.yaml'); do kubectl create -f $i; done
49-
```
66+
Install CSI Driver:
67+
* Follow instructions provided by your CSI Driver vendor.
68+
* Here is an example to install the sample hostpath CSI driver
69+
* kubectl create -f deploy/kubernetes/csi-snapshotter
70+
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/csi-snapshotter
5071

51-
### Running with Leader Election
72+
### Important changes in the snapshot beta APIs
73+
74+
* DeletionPolicy is now a required field rather than optional in both VolumeSnapshotClass and VolumeSnapshotContent. This way the user has to explicitly specify it, leaving no room for confusion.
75+
* VolumeSnapshotSpec has a new required Source field. Source may be either a PersistentVolumeClaimName (if dynamically provisioning a snapshot) or VolumeSnapshotContentName (if pre-provisioning a snapshot).
76+
* VolumeSnapshotContentSpec also has a new required Source field. This Source may be either a VolumeHandle (if dynamically provisioning a snapshot) or a SnapshotHandle (if pre-provisioning volume snapshots).
77+
* VolumeSnapshotStatus now contains a BoundVolumeSnapshotContentName to indicate the VolumeSnapshot object is bound to a VolumeSnapshotContent.
78+
* VolumeSnapshotContentnow contains a Status to indicate the current state of the content. It has a field SnapshotHandle to indicate that the VolumeSnapshotContent represents a snapshot on the storage system.
79+
80+
### Snapshot controller command line options
81+
82+
#### Important optional arguments that are highly recommended to be used
83+
* `--leader-election`: Enables leader election. This is useful when there are multiple replicas of the same snapshot controller running for the same Kubernetes deployment. Only one of them may be active (=leader). A new leader will be re-elected when current leader dies or becomes unresponsive for ~15 seconds.
84+
85+
* `--leader-election-namespace <namespace>`: The namespace where the leader election resource exists. Defaults to the pod namespace if not set.
86+
87+
#### Other recognized arguments
88+
* `--kubeconfig <path>`: Path to Kubernetes client configuration that the snapshot controller uses to connect to Kubernetes API server. When omitted, default token provided by Kubernetes will be used. This option is useful only when the snapshot controller does not run as a Kubernetes pod, e.g. for debugging.
89+
90+
* `--resync-period <duration>`: Internal resync interval when the snapshot controller re-evaluates all existing `VolumeSnapshot` instances and tries to fulfill them, i.e. create / delete corresponding snapshots. It does not affect re-tries of failed calls! It should be used only when there is a bug in Kubernetes watch logic.
91+
92+
* `--create-snapshotcontent-retrycount`: Number of retries when we create a snapshot content object for a snapshot. Default is 5.
93+
94+
* `--create-snapshotcontent-interval`: Interval between retries when we create a snapshot content object for a snapshot. Default is 10 seconds.
95+
96+
* `--version`: Prints current snapshot controller version and quits.
97+
98+
* All glog / klog arguments are supported, such as `-v <log level>` or `-alsologtostderr`.
99+
100+
### CSI external snapshotter sidecar command line options
101+
102+
#### Important optional arguments that are highly recommended to be used
103+
* `--csi-address <path to CSI socket>`: This is the path to the CSI driver socket inside the pod that the external-snapshotter container will use to issue CSI operations (`/run/csi/socket` is used by default).
104+
105+
* `--leader-election`: Enables leader election. This is useful when there are multiple replicas of the same external-snapshotter running for one CSI driver. Only one of them may be active (=leader). A new leader will be re-elected when current leader dies or becomes unresponsive for ~15 seconds.
106+
107+
* `--leader-election-namespace <namespace>`: The namespace where the leader election resource exists. Defaults to the pod namespace if not set.
108+
109+
* `--timeout <duration>`: Timeout of all calls to CSI driver. It should be set to value that accommodates majority of `CreateSnapshot`, `DeleteSnapshot, and `ListSnapshots` calls. 1 minute is used by default.
110+
111+
* `snapshot-name-prefix`: Prefix to apply to the name of a created snapshot. Default is `snapshot`.
112+
113+
* `snapshot-name-uuid-length`: Length in characters for the generated uuid of a created snapshot. Defaults behavior is to NOT truncate.
114+
115+
#### Other recognized arguments
116+
* `--kubeconfig <path>`: Path to Kubernetes client configuration that the CSI external-snapshotter uses to connect to Kubernetes API server. When omitted, default token provided by Kubernetes will be used. This option is useful only when the external-snapshotter does not run as a Kubernetes pod, e.g. for debugging.
117+
118+
* `--resync-period <duration>`: Internal resync interval when the CSI external-snapshotter re-evaluates all existing `VolumeSnapshotContent` instances and tries to fulfill them, i.e. update / delete corresponding snapshots. It does not affect re-tries of failed CSI calls! It should be used only when there is a bug in Kubernetes watch logic.
119+
120+
* `--version`: Prints current CSI external-snapshotter version and quits.
121+
122+
* All glog / klog arguments are supported, such as `-v <log level>` or `-alsologtostderr`.
123+
124+
125+
## Upgrade from Alpha to Beta
126+
127+
The change from Alpha to Beta snapshot APIs is not backward compatible.
128+
129+
If you have already deployed Alpha snapshot APIs and controller and want to upgrade to Beta, you need to do the following:
130+
* Delete snapshots created using Alpha snapshot CRDs and controller.
131+
* Uninstall Alpha snapshot CRDs, controller, and CSI driver.
132+
* Install Beta snapshot CRDs, controller, and CSI driver.
52133

53-
If you want to run external-snapshotter with higher availability, you can enable resource based leader election. To enable this, set the following flags:
54-
```bash
55-
--leader-election=true
56-
```
57134

58135
## Testing
59136

60137
Running Unit Tests:
61138

62139
```bash
63-
go test -timeout 30s github.com/kubernetes-csi/external-snapshotter/pkg/controller
140+
go test -timeout 30s github.com/kubernetes-csi/external-snapshotter/pkg/common-controller
141+
142+
go test -timeout 30s github.com/kubernetes-csi/external-snapshotter/pkg/sidecar-controller
64143
```
65144

66145
## Dependency Management

0 commit comments

Comments
 (0)