From 74abf2b5e061ca4a6e877fc888b78d10339d7f3f Mon Sep 17 00:00:00 2001 From: Anshul Ahuja Date: Tue, 17 Jan 2023 14:21:08 +0530 Subject: [PATCH] Add Proposal to add support for Multiple VolumeSnapshotClasses in CSI Plugin --- ...ultiple-csi-volumesnapshotclass-support.md | 146 ++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 design/multiple-csi-volumesnapshotclass-support.md diff --git a/design/multiple-csi-volumesnapshotclass-support.md b/design/multiple-csi-volumesnapshotclass-support.md new file mode 100644 index 0000000000..5f415ca829 --- /dev/null +++ b/design/multiple-csi-volumesnapshotclass-support.md @@ -0,0 +1,146 @@ +# Proposal to add support for Multiple VolumeSnapshotClasses in CSI Plugin + +- [Proposal to add support for Multiple VolumeSnapshotClasses in CSI Plugin](#proposal-to-add-support-for-multiple-volumesnapshotclasses-in-csi-plugin) + - [Abstract](#abstract) + - [Background](#background) + - [Goals](#goals) + - [Non Goals](#non-goals) + - [High-Level Design Proposals](#high-level-design-proposals) + - [Detailed Design](#detailed-design) + - [Alternatives Considered](#alternatives-considered) + - [Security Considerations](#security-considerations) + - [Compatibility](#compatibility) + - [Implementation](#implementation) + - [Open Issues](#open-issues) + +## Abstract +Currently the Velero CSI plugin chooses the VolumeSnapshotClass in the cluster that has the same driver name and also has the velero.io/csi-volumesnapshot-class label set on it. This global selection is not sufficient for many use cases. This proposal is to add support for multiple VolumeSnapshotClasses in CSI Plugin where the user can specify the VolumeSnapshotClass to use for a particular driver and backup. + + +## Background +The Velero CSI plugin chooses the VolumeSnapshotClass in the cluster that has the same driver name and also has the velero.io/csi-volumesnapshot-class label set on it. This global selection is not sufficient for many use cases. For example, if a cluster has multiple VolumeSnapshotClasses for the same driver, the user may want to use a VolumeSnapshotClass that is different from the default one. The user might also have different schedules set up for backing up different parts of the cluster and might wish to use different VolumeSnapshotClasses for each of these backups. + +## Goals +- Allow the user to specify the VolumeSnapshotClass to use for a particular driver and backup. + +## Non Goals +- + +## High-Level Design Proposals + +1. **Through Annotations** + 1. **Support VolumeSnapshotClass selection at PVC level** + The user can annotate the PVCs with driver and VolumeSnapshotClass name. The CSI plugin will use the VolumeSnapshotClass specified in the annotation. If the annotation is not present, the CSI plugin will use the default VolumeSnapshotClass for the driver. If the VolumeSNapshotClass provided is of a different driver, the CSI plugin will use the default VolumeSnapshotClass for the driver. + + *example annotation on PVC:* + ```yaml + apiVersion: v1 + kind: PersistentVolumeClaim + metadata: + name: pvc-1 + annotations: + velero.io/csi-volumesnapshot-class: csi-diskdriver-snapclass + + ``` + + 2. **Support VolumeSnapshotClass selection at backup/schedule level** + The user can annotate the backup/ schedule with driver and VolumeSnapshotClass name. The CSI plugin will use the VolumeSnapshotClass specified in the annotation. If the annotation is not present, the CSI plugin will use the default VolumeSnapshotClass for the driver. + + *example annotation on backup/schedule:* + ```yaml + apiVersion: velero.io/v1 + kind: Backup + metadata: + name: backup-1 + annotations: + velero.io/csi-volumesnapshot-class/csi.cloud.disk.driver: csi-diskdriver-snapclass + velero.io/csi-volumesnapshot-class/csi.cloud.file.driver: csi-filedriver-snapclass + velero.io/csi-volumesnapshot-class/: csi-snapclass + ``` + + To query the annotations on a backup: "velero.io/csi-volumesnapshot-class/'driver name'" - where driver names comes from the PVC's driver. + + **Limitations of Annotations approach**: + - The user has to annotate the PVCs or backups with the VolumeSnapshotClass to use for each driver. This is not ideal for the user experience. + - Mitigation: We can extend Velero CLI to also annotate backups/schedules with the VolumeSnapshotClass to use for each driver. This will make it easier for the user to annotate the backups/schedules. This mitigation is not for the PVCs though, since PVCs is anyways a specific use case. + + +1. **Through CSI Specific Fields in Velero contracts** + + **Considerations** + - Since CSI snapshotting is done throught the plugin, we don't intend to bloat up the Backup Spec with CSI specific fields. + - But considering that CSI Snapshotting is the way forward, we can debate if we should add a CSI section to the Backup Spec. + + + **Approach**: Similar to VolumeSnapshotLocation param in the Backup Spec, we can add a VolumeSnapshotClass param in the Backup Spec. This will allow the user to specify the VolumeSnapshotClass to use for the backup. The CSI plugin will use the VolumeSnapshotClass specified in the Backup Spec. If the VolumeSnapshotClass is not specified, the CSI plugin will use the default VolumeSnapshotClass for the driver. + + *example of VolumeSnapshotClass param in the Backup Spec:* + ```yaml + apiVersion: velero.io/v1 + kind: Backup + metadata: + name: backup-1 + spec: + csiParameters: + volumeSnapshotClasses: + driver: csi.cloud.disk.driver + snapClass: csi-diskdriver-snapclass + timeout: 10m + ``` + +1. **Through changes in velero contracts** + 1. **Through configmap references.** + Currently even the storageclass mapping plugin expects the user to create a configmap which is used globally, and fetched through labels. This behaviour has same issue as the VolumeSnapshotClass selection. We can introduce a field in the velero contracts which allow passing configmap references for each plugin. And then the plugin can honour the configmap passed in as reference. The configmap can be used to pass the VolumeSnapshotClass to use for the backup, and also other parameters to tweak. This can help in making plugins more flexible while not depending on global behaviour. + + + *example of configmap reference in the velero contracts:* + ```yaml + apiVersion: velero.io/v1 + kind: Backup + metadata: + name: backup-1 + spec: + configmapRefs: + - name: csi-volumesnapshotclass-configmap + - namespace: velero + - plugin: velero.io/csi + ``` + + 2. **Through generic property bag in the velero contracts**: We can introduce a field in the velero contracts which allow passing a generic property bag for each plugin. And then the plugin can honour the property bag passed in. + + + *example of property bag in the velero contracts:* + ```yaml + apiVersion: velero.io/v1 + kind: Backup + metadata: + name: backup-1 + spec: + pluginInputs: + - name: velero.io/csi + - properties: + - key: csi.cloud.disk.driver + - value: csi-diskdriver-snapclass + - key: csi.cloud.file.driver + - value: csi-filedriver-snapclass + ``` + + **Note**: Both these approaches can also be used to tweak other parameters such as CSI Snapshotting Timeout/intervals. And further can be used by other plugins. + +## Detailed Design +TBD based on closure of high level design proposals. + +## Alternatives Considered +NA + +## Security Considerations +No security impact. + +## Compatibility +Existing behaviour of csi plugin will be retained where it fetches the VolumeSnapshotClass through the label. This will be the default behaviour if the user does not specify the VolumeSnapshotClass. + +## Implementation +TBD based on closure of high level design proposals. + +## Open Issues +NA