mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-09 06:33:22 +00:00
Refactors the framework package to implement the plugin versioning changes needed for BIA v1 and overall package refactoring to support plugin versions in different packages. This should be all that's needed to move on to v2 for BackupItemAction. The remaining plugin types still need similar refactoring to what's being done here for BIA before attempting a v2 implementation. Signed-off-by: Scott Seago <sseago@redhat.com>
68 lines
2.8 KiB
Go
68 lines
2.8 KiB
Go
/*
|
|
Copyright 2018, 2019 the Velero contributors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package common
|
|
|
|
// PluginKind is a type alias for a string that describes
|
|
// the kind of a Velero-supported plugin.
|
|
type PluginKind string
|
|
|
|
// String returns the string for k.
|
|
func (k PluginKind) String() string {
|
|
return string(k)
|
|
}
|
|
|
|
const (
|
|
// PluginKindObjectStore represents an object store plugin.
|
|
PluginKindObjectStore PluginKind = "ObjectStore"
|
|
|
|
// PluginKindVolumeSnapshotter represents a volume snapshotter plugin.
|
|
PluginKindVolumeSnapshotter PluginKind = "VolumeSnapshotter"
|
|
|
|
// PluginKindBackupItemAction represents a backup item action plugin.
|
|
PluginKindBackupItemAction PluginKind = "BackupItemAction"
|
|
|
|
// PluginKindRestoreItemAction represents a restore item action plugin.
|
|
PluginKindRestoreItemAction PluginKind = "RestoreItemAction"
|
|
|
|
// PluginKindDeleteItemAction represents a delete item action plugin.
|
|
PluginKindDeleteItemAction PluginKind = "DeleteItemAction"
|
|
|
|
// PluginKindItemSnapshotter represents an item snapshotter plugin
|
|
PluginKindItemSnapshotter PluginKind = "ItemSnapshotter"
|
|
|
|
// PluginKindPluginLister represents a plugin lister plugin.
|
|
PluginKindPluginLister PluginKind = "PluginLister"
|
|
)
|
|
|
|
// If there are plugin kinds that are adaptable to newer API versions, list them here.
|
|
// The older (adaptable) version is the key, and the value is the full list of newer
|
|
// plugin kinds that are capable of adapting it.
|
|
var PluginKindsAdaptableTo = map[PluginKind][]PluginKind{}
|
|
|
|
// AllPluginKinds contains all the valid plugin kinds that Velero supports, excluding PluginLister because that is not a
|
|
// kind that a developer would ever need to implement (it's handled by Velero and the Velero plugin library code).
|
|
func AllPluginKinds() map[string]PluginKind {
|
|
allPluginKinds := make(map[string]PluginKind)
|
|
allPluginKinds[PluginKindObjectStore.String()] = PluginKindObjectStore
|
|
allPluginKinds[PluginKindVolumeSnapshotter.String()] = PluginKindVolumeSnapshotter
|
|
allPluginKinds[PluginKindBackupItemAction.String()] = PluginKindBackupItemAction
|
|
allPluginKinds[PluginKindRestoreItemAction.String()] = PluginKindRestoreItemAction
|
|
allPluginKinds[PluginKindDeleteItemAction.String()] = PluginKindDeleteItemAction
|
|
allPluginKinds[PluginKindItemSnapshotter.String()] = PluginKindItemSnapshotter
|
|
return allPluginKinds
|
|
}
|