refactor external snapshotter to use csi-lib-utils/rpc
This commit is contained in:
committed by
Andrew Sy Kim
parent
c20ded872e
commit
06a4bf2a05
135
pkg/snapshotter/snapshotter.go
Normal file
135
pkg/snapshotter/snapshotter.go
Normal file
@@ -0,0 +1,135 @@
|
||||
/*
|
||||
Copyright 2019 The Kubernetes Authors.
|
||||
|
||||
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 snapshotter
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/container-storage-interface/spec/lib/go/csi"
|
||||
"github.com/golang/protobuf/ptypes"
|
||||
"github.com/golang/protobuf/ptypes/timestamp"
|
||||
csirpc "github.com/kubernetes-csi/csi-lib-utils/rpc"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
|
||||
"k8s.io/api/core/v1"
|
||||
"k8s.io/klog"
|
||||
)
|
||||
|
||||
// Snapshotter implements CreateSnapshot/DeleteSnapshot operations against a remote CSI driver.
|
||||
type Snapshotter interface {
|
||||
// CreateSnapshot creates a snapshot for a volume
|
||||
CreateSnapshot(ctx context.Context, snapshotName string, volume *v1.PersistentVolume, parameters map[string]string, snapshotterCredentials map[string]string) (driverName string, snapshotId string, timestamp int64, size int64, readyToUse bool, err error)
|
||||
|
||||
// DeleteSnapshot deletes a snapshot from a volume
|
||||
DeleteSnapshot(ctx context.Context, snapshotID string, snapshotterCredentials map[string]string) (err error)
|
||||
|
||||
// GetSnapshotStatus returns if a snapshot is ready to use, creation time, and restore size.
|
||||
GetSnapshotStatus(ctx context.Context, snapshotID string) (bool, int64, int64, error)
|
||||
}
|
||||
|
||||
type snapshot struct {
|
||||
conn *grpc.ClientConn
|
||||
}
|
||||
|
||||
func NewSnapshotter(conn *grpc.ClientConn) Snapshotter {
|
||||
return &snapshot{
|
||||
conn: conn,
|
||||
}
|
||||
}
|
||||
|
||||
func (s *snapshot) CreateSnapshot(ctx context.Context, snapshotName string, volume *v1.PersistentVolume, parameters map[string]string, snapshotterCredentials map[string]string) (string, string, int64, int64, bool, error) {
|
||||
klog.V(5).Infof("CSI CreateSnapshot: %s", snapshotName)
|
||||
if volume.Spec.CSI == nil {
|
||||
return "", "", 0, 0, false, fmt.Errorf("CSIPersistentVolumeSource not defined in spec")
|
||||
}
|
||||
|
||||
client := csi.NewControllerClient(s.conn)
|
||||
|
||||
driverName, err := csirpc.GetDriverName(ctx, s.conn)
|
||||
if err != nil {
|
||||
return "", "", 0, 0, false, err
|
||||
}
|
||||
|
||||
req := csi.CreateSnapshotRequest{
|
||||
SourceVolumeId: volume.Spec.CSI.VolumeHandle,
|
||||
Name: snapshotName,
|
||||
Parameters: parameters,
|
||||
Secrets: snapshotterCredentials,
|
||||
}
|
||||
|
||||
rsp, err := client.CreateSnapshot(ctx, &req)
|
||||
if err != nil {
|
||||
return "", "", 0, 0, false, err
|
||||
}
|
||||
|
||||
klog.V(5).Infof("CSI CreateSnapshot: %s driver name [%s] snapshot ID [%s] time stamp [%d] size [%d] readyToUse [%v]", snapshotName, driverName, rsp.Snapshot.SnapshotId, rsp.Snapshot.CreationTime, rsp.Snapshot.SizeBytes, rsp.Snapshot.ReadyToUse)
|
||||
creationTime, err := timestampToUnixTime(rsp.Snapshot.CreationTime)
|
||||
if err != nil {
|
||||
return "", "", 0, 0, false, err
|
||||
}
|
||||
return driverName, rsp.Snapshot.SnapshotId, creationTime, rsp.Snapshot.SizeBytes, rsp.Snapshot.ReadyToUse, nil
|
||||
}
|
||||
|
||||
func (s *snapshot) DeleteSnapshot(ctx context.Context, snapshotID string, snapshotterCredentials map[string]string) (err error) {
|
||||
client := csi.NewControllerClient(s.conn)
|
||||
|
||||
req := csi.DeleteSnapshotRequest{
|
||||
SnapshotId: snapshotID,
|
||||
Secrets: snapshotterCredentials,
|
||||
}
|
||||
|
||||
if _, err := client.DeleteSnapshot(ctx, &req); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *snapshot) GetSnapshotStatus(ctx context.Context, snapshotID string) (bool, int64, int64, error) {
|
||||
client := csi.NewControllerClient(s.conn)
|
||||
|
||||
req := csi.ListSnapshotsRequest{
|
||||
SnapshotId: snapshotID,
|
||||
}
|
||||
|
||||
rsp, err := client.ListSnapshots(ctx, &req)
|
||||
if err != nil {
|
||||
return false, 0, 0, err
|
||||
}
|
||||
|
||||
if rsp.Entries == nil || len(rsp.Entries) == 0 {
|
||||
return false, 0, 0, fmt.Errorf("can not find snapshot for snapshotID %s", snapshotID)
|
||||
}
|
||||
|
||||
creationTime, err := timestampToUnixTime(rsp.Entries[0].Snapshot.CreationTime)
|
||||
if err != nil {
|
||||
return false, 0, 0, err
|
||||
}
|
||||
return rsp.Entries[0].Snapshot.ReadyToUse, creationTime, rsp.Entries[0].Snapshot.SizeBytes, nil
|
||||
}
|
||||
|
||||
func timestampToUnixTime(t *timestamp.Timestamp) (int64, error) {
|
||||
time, err := ptypes.Timestamp(t)
|
||||
if err != nil {
|
||||
return -1, err
|
||||
}
|
||||
// TODO: clean this up, we probably don't need this translation layer
|
||||
// and can just use time.Time
|
||||
return time.UnixNano(), nil
|
||||
}
|
504
pkg/snapshotter/snapshotter_test.go
Normal file
504
pkg/snapshotter/snapshotter_test.go
Normal file
@@ -0,0 +1,504 @@
|
||||
/*
|
||||
Copyright 2018 The Kubernetes Authors.
|
||||
|
||||
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 snapshotter
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/container-storage-interface/spec/lib/go/csi"
|
||||
"github.com/golang/mock/gomock"
|
||||
"github.com/golang/protobuf/ptypes"
|
||||
"github.com/kubernetes-csi/csi-lib-utils/connection"
|
||||
"github.com/kubernetes-csi/csi-test/driver"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/grpc/codes"
|
||||
"google.golang.org/grpc/status"
|
||||
|
||||
"k8s.io/api/core/v1"
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
"k8s.io/apimachinery/pkg/types"
|
||||
)
|
||||
|
||||
const (
|
||||
driverName = "foo/bar"
|
||||
)
|
||||
|
||||
func createMockServer(t *testing.T) (*gomock.Controller, *driver.MockCSIDriver, *driver.MockIdentityServer, *driver.MockControllerServer, *grpc.ClientConn, error) {
|
||||
// Start the mock server
|
||||
mockController := gomock.NewController(t)
|
||||
identityServer := driver.NewMockIdentityServer(mockController)
|
||||
controllerServer := driver.NewMockControllerServer(mockController)
|
||||
drv := driver.NewMockCSIDriver(&driver.MockCSIDriverServers{
|
||||
Identity: identityServer,
|
||||
Controller: controllerServer,
|
||||
})
|
||||
drv.Start()
|
||||
|
||||
// Create a client connection to it
|
||||
addr := drv.Address()
|
||||
csiConn, err := connection.Connect(addr)
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, nil, err
|
||||
}
|
||||
|
||||
return mockController, drv, identityServer, controllerServer, csiConn, nil
|
||||
}
|
||||
|
||||
func TestCreateSnapshot(t *testing.T) {
|
||||
defaultName := "snapshot-test"
|
||||
defaultID := "testid"
|
||||
createTimestamp := ptypes.TimestampNow()
|
||||
createTime, err := ptypes.Timestamp(createTimestamp)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to convert timestamp to time: %v", err)
|
||||
}
|
||||
|
||||
createSecrets := map[string]string{"foo": "bar"}
|
||||
defaultParameter := map[string]string{
|
||||
"param1": "value1",
|
||||
"param2": "value2",
|
||||
}
|
||||
|
||||
csiVolume := FakeCSIVolume()
|
||||
volumeWithoutCSI := FakeVolume()
|
||||
|
||||
defaultRequest := &csi.CreateSnapshotRequest{
|
||||
Name: defaultName,
|
||||
SourceVolumeId: csiVolume.Spec.CSI.VolumeHandle,
|
||||
}
|
||||
|
||||
attributesRequest := &csi.CreateSnapshotRequest{
|
||||
Name: defaultName,
|
||||
Parameters: defaultParameter,
|
||||
SourceVolumeId: csiVolume.Spec.CSI.VolumeHandle,
|
||||
}
|
||||
|
||||
secretsRequest := &csi.CreateSnapshotRequest{
|
||||
Name: defaultName,
|
||||
SourceVolumeId: csiVolume.Spec.CSI.VolumeHandle,
|
||||
Secrets: createSecrets,
|
||||
}
|
||||
|
||||
defaultResponse := &csi.CreateSnapshotResponse{
|
||||
Snapshot: &csi.Snapshot{
|
||||
SnapshotId: defaultID,
|
||||
SizeBytes: 1000,
|
||||
SourceVolumeId: csiVolume.Spec.CSI.VolumeHandle,
|
||||
CreationTime: createTimestamp,
|
||||
ReadyToUse: true,
|
||||
},
|
||||
}
|
||||
|
||||
pluginInfoOutput := &csi.GetPluginInfoResponse{
|
||||
Name: driverName,
|
||||
VendorVersion: "0.3.0",
|
||||
Manifest: map[string]string{
|
||||
"hello": "world",
|
||||
},
|
||||
}
|
||||
|
||||
type snapshotResult struct {
|
||||
driverName string
|
||||
snapshotId string
|
||||
timestamp int64
|
||||
size int64
|
||||
readyToUse bool
|
||||
}
|
||||
|
||||
result := &snapshotResult{
|
||||
size: 1000,
|
||||
driverName: driverName,
|
||||
snapshotId: defaultID,
|
||||
timestamp: createTime.UnixNano(),
|
||||
readyToUse: true,
|
||||
}
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
snapshotName string
|
||||
volume *v1.PersistentVolume
|
||||
parameters map[string]string
|
||||
secrets map[string]string
|
||||
input *csi.CreateSnapshotRequest
|
||||
output *csi.CreateSnapshotResponse
|
||||
injectError codes.Code
|
||||
expectError bool
|
||||
expectResult *snapshotResult
|
||||
}{
|
||||
{
|
||||
name: "success",
|
||||
snapshotName: defaultName,
|
||||
volume: csiVolume,
|
||||
input: defaultRequest,
|
||||
output: defaultResponse,
|
||||
expectError: false,
|
||||
expectResult: result,
|
||||
},
|
||||
{
|
||||
name: "attributes",
|
||||
snapshotName: defaultName,
|
||||
volume: csiVolume,
|
||||
parameters: defaultParameter,
|
||||
input: attributesRequest,
|
||||
output: defaultResponse,
|
||||
expectError: false,
|
||||
expectResult: result,
|
||||
},
|
||||
{
|
||||
name: "secrets",
|
||||
snapshotName: defaultName,
|
||||
volume: csiVolume,
|
||||
secrets: createSecrets,
|
||||
input: secretsRequest,
|
||||
output: defaultResponse,
|
||||
expectError: false,
|
||||
expectResult: result,
|
||||
},
|
||||
{
|
||||
name: "fail for volume without csi source",
|
||||
snapshotName: defaultName,
|
||||
volume: volumeWithoutCSI,
|
||||
input: nil,
|
||||
output: nil,
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
name: "gRPC transient error",
|
||||
snapshotName: defaultName,
|
||||
volume: csiVolume,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.DeadlineExceeded,
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
name: "gRPC final error",
|
||||
snapshotName: defaultName,
|
||||
volume: csiVolume,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.NotFound,
|
||||
expectError: true,
|
||||
},
|
||||
}
|
||||
|
||||
mockController, driver, identityServer, controllerServer, csiConn, err := createMockServer(t)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer mockController.Finish()
|
||||
defer driver.Stop()
|
||||
defer csiConn.Close()
|
||||
|
||||
for _, test := range tests {
|
||||
in := test.input
|
||||
out := test.output
|
||||
var injectedErr error
|
||||
if test.injectError != codes.OK {
|
||||
injectedErr = status.Error(test.injectError, fmt.Sprintf("Injecting error %d", test.injectError))
|
||||
}
|
||||
|
||||
// Setup expectation
|
||||
if in != nil {
|
||||
identityServer.EXPECT().GetPluginInfo(gomock.Any(), gomock.Any()).Return(pluginInfoOutput, nil).Times(1)
|
||||
controllerServer.EXPECT().CreateSnapshot(gomock.Any(), in).Return(out, injectedErr).Times(1)
|
||||
}
|
||||
|
||||
s := NewSnapshotter(csiConn)
|
||||
driverName, snapshotId, timestamp, size, readyToUse, err := s.CreateSnapshot(context.Background(), test.snapshotName, test.volume, test.parameters, test.secrets)
|
||||
if test.expectError && err == nil {
|
||||
t.Errorf("test %q: Expected error, got none", test.name)
|
||||
}
|
||||
if !test.expectError && err != nil {
|
||||
t.Errorf("test %q: got error: %v", test.name, err)
|
||||
}
|
||||
if test.expectResult != nil {
|
||||
if driverName != test.expectResult.driverName {
|
||||
t.Errorf("test %q: expected driverName: %q, got: %q", test.name, test.expectResult.driverName, driverName)
|
||||
}
|
||||
|
||||
if snapshotId != test.expectResult.snapshotId {
|
||||
t.Errorf("test %q: expected snapshotId: %v, got: %v", test.name, test.expectResult.snapshotId, snapshotId)
|
||||
}
|
||||
|
||||
if timestamp != test.expectResult.timestamp {
|
||||
t.Errorf("test %q: expected create time: %v, got: %v", test.name, test.expectResult.timestamp, timestamp)
|
||||
}
|
||||
|
||||
if size != test.expectResult.size {
|
||||
t.Errorf("test %q: expected size: %v, got: %v", test.name, test.expectResult.size, size)
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(readyToUse, test.expectResult.readyToUse) {
|
||||
t.Errorf("test %q: expected readyToUse: %v, got: %v", test.name, test.expectResult.readyToUse, readyToUse)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestDeleteSnapshot(t *testing.T) {
|
||||
defaultID := "testid"
|
||||
secrets := map[string]string{"foo": "bar"}
|
||||
|
||||
defaultRequest := &csi.DeleteSnapshotRequest{
|
||||
SnapshotId: defaultID,
|
||||
}
|
||||
|
||||
secretsRequest := &csi.DeleteSnapshotRequest{
|
||||
SnapshotId: defaultID,
|
||||
Secrets: secrets,
|
||||
}
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
snapshotID string
|
||||
secrets map[string]string
|
||||
input *csi.DeleteSnapshotRequest
|
||||
output *csi.DeleteSnapshotResponse
|
||||
injectError codes.Code
|
||||
expectError bool
|
||||
}{
|
||||
{
|
||||
name: "success",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: &csi.DeleteSnapshotResponse{},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "secrets",
|
||||
snapshotID: defaultID,
|
||||
secrets: secrets,
|
||||
input: secretsRequest,
|
||||
output: &csi.DeleteSnapshotResponse{},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "gRPC transient error",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.DeadlineExceeded,
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
name: "gRPC final error",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.NotFound,
|
||||
expectError: true,
|
||||
},
|
||||
}
|
||||
|
||||
mockController, driver, _, controllerServer, csiConn, err := createMockServer(t)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer mockController.Finish()
|
||||
defer driver.Stop()
|
||||
defer csiConn.Close()
|
||||
|
||||
for _, test := range tests {
|
||||
in := test.input
|
||||
out := test.output
|
||||
var injectedErr error
|
||||
if test.injectError != codes.OK {
|
||||
injectedErr = status.Error(test.injectError, fmt.Sprintf("Injecting error %d", test.injectError))
|
||||
}
|
||||
|
||||
// Setup expectation
|
||||
if in != nil {
|
||||
controllerServer.EXPECT().DeleteSnapshot(gomock.Any(), in).Return(out, injectedErr).Times(1)
|
||||
}
|
||||
|
||||
s := NewSnapshotter(csiConn)
|
||||
err := s.DeleteSnapshot(context.Background(), test.snapshotID, test.secrets)
|
||||
if test.expectError && err == nil {
|
||||
t.Errorf("test %q: Expected error, got none", test.name)
|
||||
}
|
||||
if !test.expectError && err != nil {
|
||||
t.Errorf("test %q: got error: %v", test.name, err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetSnapshotStatus(t *testing.T) {
|
||||
defaultID := "testid"
|
||||
size := int64(1000)
|
||||
createTimestamp := ptypes.TimestampNow()
|
||||
createTime, err := ptypes.Timestamp(createTimestamp)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to convert timestamp to time: %v", err)
|
||||
}
|
||||
|
||||
defaultRequest := &csi.ListSnapshotsRequest{
|
||||
SnapshotId: defaultID,
|
||||
}
|
||||
|
||||
defaultResponse := &csi.ListSnapshotsResponse{
|
||||
Entries: []*csi.ListSnapshotsResponse_Entry{
|
||||
{
|
||||
Snapshot: &csi.Snapshot{
|
||||
SnapshotId: defaultID,
|
||||
SizeBytes: size,
|
||||
SourceVolumeId: "volumeid",
|
||||
CreationTime: createTimestamp,
|
||||
ReadyToUse: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
snapshotID string
|
||||
input *csi.ListSnapshotsRequest
|
||||
output *csi.ListSnapshotsResponse
|
||||
injectError codes.Code
|
||||
expectError bool
|
||||
expectReady bool
|
||||
expectCreateAt int64
|
||||
expectSize int64
|
||||
}{
|
||||
{
|
||||
name: "success",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: defaultResponse,
|
||||
expectError: false,
|
||||
expectReady: true,
|
||||
expectCreateAt: createTime.UnixNano(),
|
||||
expectSize: size,
|
||||
},
|
||||
{
|
||||
name: "gRPC transient error",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.DeadlineExceeded,
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
name: "gRPC final error",
|
||||
snapshotID: defaultID,
|
||||
input: defaultRequest,
|
||||
output: nil,
|
||||
injectError: codes.NotFound,
|
||||
expectError: true,
|
||||
},
|
||||
}
|
||||
|
||||
mockController, driver, _, controllerServer, csiConn, err := createMockServer(t)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer mockController.Finish()
|
||||
defer driver.Stop()
|
||||
defer csiConn.Close()
|
||||
|
||||
for _, test := range tests {
|
||||
in := test.input
|
||||
out := test.output
|
||||
var injectedErr error
|
||||
if test.injectError != codes.OK {
|
||||
injectedErr = status.Error(test.injectError, fmt.Sprintf("Injecting error %d", test.injectError))
|
||||
}
|
||||
|
||||
// Setup expectation
|
||||
if in != nil {
|
||||
controllerServer.EXPECT().ListSnapshots(gomock.Any(), in).Return(out, injectedErr).Times(1)
|
||||
}
|
||||
|
||||
s := NewSnapshotter(csiConn)
|
||||
ready, createTime, size, err := s.GetSnapshotStatus(context.Background(), test.snapshotID)
|
||||
if test.expectError && err == nil {
|
||||
t.Errorf("test %q: Expected error, got none", test.name)
|
||||
}
|
||||
if !test.expectError && err != nil {
|
||||
t.Errorf("test %q: got error: %v", test.name, err)
|
||||
}
|
||||
if test.expectReady != ready {
|
||||
t.Errorf("test %q: expected status: %v, got: %v", test.name, test.expectReady, ready)
|
||||
}
|
||||
if test.expectCreateAt != createTime {
|
||||
t.Errorf("test %q: expected createTime: %v, got: %v", test.name, test.expectCreateAt, createTime)
|
||||
}
|
||||
if test.expectSize != size {
|
||||
t.Errorf("test %q: expected size: %v, got: %v", test.name, test.expectSize, size)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func FakeCSIVolume() *v1.PersistentVolume {
|
||||
volume := v1.PersistentVolume{
|
||||
ObjectMeta: metav1.ObjectMeta{
|
||||
Name: "fake-csi-volume",
|
||||
},
|
||||
Spec: v1.PersistentVolumeSpec{
|
||||
ClaimRef: &v1.ObjectReference{
|
||||
Kind: "PersistentVolumeClaim",
|
||||
APIVersion: "v1",
|
||||
UID: types.UID("uid123"),
|
||||
Namespace: "default",
|
||||
Name: "test-claim",
|
||||
},
|
||||
PersistentVolumeSource: v1.PersistentVolumeSource{
|
||||
CSI: &v1.CSIPersistentVolumeSource{
|
||||
Driver: driverName,
|
||||
VolumeHandle: "foo",
|
||||
},
|
||||
},
|
||||
StorageClassName: "default",
|
||||
},
|
||||
Status: v1.PersistentVolumeStatus{
|
||||
Phase: v1.VolumeBound,
|
||||
},
|
||||
}
|
||||
|
||||
return &volume
|
||||
}
|
||||
|
||||
func FakeVolume() *v1.PersistentVolume {
|
||||
volume := v1.PersistentVolume{
|
||||
ObjectMeta: metav1.ObjectMeta{
|
||||
Name: "fake-csi-volume",
|
||||
},
|
||||
Spec: v1.PersistentVolumeSpec{
|
||||
ClaimRef: &v1.ObjectReference{
|
||||
Kind: "PersistentVolumeClaim",
|
||||
APIVersion: "v1",
|
||||
UID: types.UID("uid123"),
|
||||
Namespace: "default",
|
||||
Name: "test-claim",
|
||||
},
|
||||
PersistentVolumeSource: v1.PersistentVolumeSource{
|
||||
GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
|
||||
},
|
||||
StorageClassName: "default",
|
||||
},
|
||||
Status: v1.PersistentVolumeStatus{
|
||||
Phase: v1.VolumeBound,
|
||||
},
|
||||
}
|
||||
|
||||
return &volume
|
||||
}
|
Reference in New Issue
Block a user