mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-07 05:46:37 +00:00
87 lines
2.4 KiB
Go
87 lines
2.4 KiB
Go
/*
|
|
Copyright 2017 Heptio Inc.
|
|
|
|
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 plugin
|
|
|
|
import (
|
|
plugin "github.com/hashicorp/go-plugin"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/heptio/ark/pkg/cloudprovider"
|
|
"github.com/heptio/ark/pkg/cloudprovider/aws"
|
|
"github.com/heptio/ark/pkg/cloudprovider/azure"
|
|
"github.com/heptio/ark/pkg/cloudprovider/gcp"
|
|
arkplugin "github.com/heptio/ark/pkg/plugin"
|
|
)
|
|
|
|
func NewCommand() *cobra.Command {
|
|
logger := arkplugin.NewPluginLogger()
|
|
|
|
objectStores := map[string]cloudprovider.ObjectStore{
|
|
"aws": aws.NewObjectStore(),
|
|
"gcp": gcp.NewObjectStore(),
|
|
"azure": azure.NewObjectStore(),
|
|
}
|
|
|
|
blockStores := map[string]cloudprovider.BlockStore{
|
|
"aws": aws.NewBlockStore(),
|
|
"gcp": gcp.NewBlockStore(),
|
|
"azure": azure.NewBlockStore(),
|
|
}
|
|
|
|
c := &cobra.Command{
|
|
Use: "plugin [KIND] [NAME]",
|
|
Hidden: true,
|
|
Short: "INTERNAL COMMAND ONLY - not intended to be run directly by users",
|
|
Run: func(c *cobra.Command, args []string) {
|
|
if len(args) != 2 {
|
|
logger.Fatal("You must specify exactly two arguments, the plugin kind and the plugin name")
|
|
}
|
|
|
|
kind := args[0]
|
|
name := args[1]
|
|
|
|
logger.Debugf("Running plugin command for kind=%s, name=%s", kind, name)
|
|
|
|
switch kind {
|
|
case "cloudprovider":
|
|
objectStore, found := objectStores[name]
|
|
if !found {
|
|
logger.Fatalf("Unrecognized plugin name %q", name)
|
|
}
|
|
|
|
blockStore, found := blockStores[name]
|
|
if !found {
|
|
logger.Fatalf("Unrecognized plugin name %q", name)
|
|
}
|
|
|
|
plugin.Serve(&plugin.ServeConfig{
|
|
HandshakeConfig: arkplugin.Handshake,
|
|
Plugins: map[string]plugin.Plugin{
|
|
string(arkplugin.PluginKindObjectStore): arkplugin.NewObjectStorePlugin(objectStore),
|
|
string(arkplugin.PluginKindBlockStore): arkplugin.NewBlockStorePlugin(blockStore),
|
|
},
|
|
GRPCServer: plugin.DefaultGRPCServer,
|
|
})
|
|
default:
|
|
logger.Fatalf("Unsupported plugin kind %q", kind)
|
|
}
|
|
},
|
|
}
|
|
|
|
return c
|
|
}
|