This repository was archived by the owner on Apr 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathmain.go
More file actions
104 lines (86 loc) · 4.12 KB
/
main.go
File metadata and controls
104 lines (86 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
Copyright 2019, 2020 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 main
import (
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/spf13/pflag"
"github.com/vmware-tanzu/velero-plugin-for-csi/internal/backup"
"github.com/vmware-tanzu/velero-plugin-for-csi/internal/delete"
"github.com/vmware-tanzu/velero-plugin-for-csi/internal/restore"
"github.com/vmware-tanzu/velero-plugin-for-csi/internal/util"
veleroplugin "github.com/vmware-tanzu/velero/pkg/plugin/framework"
)
func main() {
veleroplugin.NewServer().
BindFlags(pflag.CommandLine).
RegisterBackupItemActionV2("velero.io/csi-pvc-backupper", newPVCBackupItemAction).
RegisterBackupItemActionV2("velero.io/csi-volumesnapshot-backupper", newVolumeSnapshotBackupItemAction).
RegisterBackupItemActionV2("velero.io/csi-volumesnapshotclass-backupper", newVolumesnapshotClassBackupItemAction).
RegisterBackupItemActionV2("velero.io/csi-volumesnapshotcontent-backupper", newVolumeSnapContentBackupItemAction).
RegisterRestoreItemActionV2("velero.io/csi-pvc-restorer", newPVCRestoreItemAction).
RegisterRestoreItemActionV2("velero.io/csi-volumesnapshot-restorer", newVolumeSnapshotRestoreItemAction).
RegisterRestoreItemActionV2("velero.io/csi-volumesnapshotclass-restorer", newVolumeSnapshotClassRestoreItemAction).
RegisterRestoreItemActionV2("velero.io/csi-volumesnapshotcontent-restorer", newVolumeSnapshotContentRestoreItemAction).
RegisterDeleteItemAction("velero.io/csi-volumesnapshot-delete", newVolumeSnapshotDeleteItemAction).
RegisterDeleteItemAction("velero.io/csi-volumesnapshotcontent-delete", newVolumeSnapshotContentDeleteItemAction).
Serve()
}
func newPVCBackupItemAction(logger logrus.FieldLogger) (interface{}, error) {
client, snapshotClient, crClient, err := util.GetFullClients()
if err != nil {
return nil, errors.WithStack(err)
}
return &backup.PVCBackupItemAction{
Log: logger,
Client: client,
SnapshotClient: snapshotClient,
CRClient: crClient,
}, nil
}
func newVolumeSnapshotBackupItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &backup.VolumeSnapshotBackupItemAction{Log: logger}, nil
}
func newVolumesnapshotClassBackupItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &backup.VolumeSnapshotClassBackupItemAction{Log: logger}, nil
}
func newVolumeSnapContentBackupItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &backup.VolumeSnapshotContentBackupItemAction{Log: logger}, nil
}
func newPVCRestoreItemAction(logger logrus.FieldLogger) (interface{}, error) {
client, snapshotClient, crClient, err := util.GetFullClients()
if err != nil {
return nil, errors.WithStack(err)
}
return &restore.PVCRestoreItemAction{
Log: logger,
Client: client,
SnapshotClient: snapshotClient,
CRClient: crClient,
}, nil
}
func newVolumeSnapshotContentRestoreItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &restore.VolumeSnapshotContentRestoreItemAction{Log: logger}, nil
}
func newVolumeSnapshotRestoreItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &restore.VolumeSnapshotRestoreItemAction{Log: logger}, nil
}
func newVolumeSnapshotClassRestoreItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &restore.VolumeSnapshotClassRestoreItemAction{Log: logger}, nil
}
func newVolumeSnapshotDeleteItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &delete.VolumeSnapshotDeleteItemAction{Log: logger}, nil
}
func newVolumeSnapshotContentDeleteItemAction(logger logrus.FieldLogger) (interface{}, error) {
return &delete.VolumeSnapshotContentDeleteItemAction{Log: logger}, nil
}