From f0a29276cc5b3d919f3e7427ed400316468c1d3f Mon Sep 17 00:00:00 2001 From: Daniel Jiang Date: Sun, 30 Jan 2022 14:26:55 +0800 Subject: [PATCH] Undeprecate the volumesnapshot plugin in the doc Since Itemsnapshotter plugin is still WIP, this commit removes the reference and the deprecation of volumeSnapshotter plugin from the doc to avoid confusion. We'll update the doc when it's ready and we have a reference implementation. Signed-off-by: Daniel Jiang --- site/content/docs/main/custom-plugins.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/site/content/docs/main/custom-plugins.md b/site/content/docs/main/custom-plugins.md index 34497c3b8..c0937c20c 100644 --- a/site/content/docs/main/custom-plugins.md +++ b/site/content/docs/main/custom-plugins.md @@ -54,14 +54,10 @@ You will need to give your plugin(s) the full name when registering them by call Velero supports the following kinds of plugins: - **Object Store** - persists and retrieves backups, backup logs and restore logs -- **Item Snapshotter** - creates snapshots for Kubernetes objects during backup and restores the object from snapshots during restore. ItemSnapshotters - are typically used with the [Astrolabe](https://github.com/vmware-tanzu/astrolabe) framework. +- **Volume Snapshotter** - creates volume snapshots (during backup) and restores volumes from snapshots (during restore) - **Backup Item Action** - executes arbitrary logic for individual items prior to storing them in a backup file - **Restore Item Action** - executes arbitrary logic for individual items prior to restoring them into a cluster - **Delete Item Action** - executes arbitrary logic based on individual items within a backup prior to deleting the backup -## Deprecated plugin kinds -- **Volume Snapshotter** - creates volume snapshots (during backup) and restores volumes from snapshots (during restore) VolumeSnapshotters -are deprecated and will be replaced with ItemSnapshotter/Astrolabe plugins. ## Plugin Logging