Skip to content

Commit 7f83b4f

Browse files
chore: bump version to v2
1 parent c112ff0 commit 7f83b4f

File tree

24 files changed

+41
-41
lines changed

24 files changed

+41
-41
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kubernetes-csi/csi-proxy
1+
module github.com/kubernetes-csi/csi-proxy/v2
22

33
go 1.16
44

integrationtests/disk_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/kubernetes-csi/csi-proxy/pkg/disk"
13-
diskapi "github.com/kubernetes-csi/csi-proxy/pkg/disk/hostapi"
12+
"github.com/kubernetes-csi/csi-proxy/v2/pkg/disk"
13+
diskapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk/hostapi"
1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"
1616
)

integrationtests/filesystem_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"
1616

17-
"github.com/kubernetes-csi/csi-proxy/pkg/filesystem"
18-
filesystemapi "github.com/kubernetes-csi/csi-proxy/pkg/filesystem/hostapi"
17+
"github.com/kubernetes-csi/csi-proxy/v2/pkg/filesystem"
18+
filesystemapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/filesystem/hostapi"
1919
)
2020

2121
func TestFilesystem(t *testing.T) {

integrationtests/iscsi_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import (
66
"strconv"
77
"testing"
88

9-
disk "github.com/kubernetes-csi/csi-proxy/pkg/disk"
10-
diskapi "github.com/kubernetes-csi/csi-proxy/pkg/disk/hostapi"
11-
iscsi "github.com/kubernetes-csi/csi-proxy/pkg/iscsi"
12-
iscsiapi "github.com/kubernetes-csi/csi-proxy/pkg/iscsi/hostapi"
13-
system "github.com/kubernetes-csi/csi-proxy/pkg/system"
14-
systemapi "github.com/kubernetes-csi/csi-proxy/pkg/system/hostapi"
9+
disk "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk"
10+
diskapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk/hostapi"
11+
iscsi "github.com/kubernetes-csi/csi-proxy/v2/pkg/iscsi"
12+
iscsiapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/iscsi/hostapi"
13+
system "github.com/kubernetes-csi/csi-proxy/v2/pkg/system"
14+
systemapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/system/hostapi"
1515

1616
"github.com/stretchr/testify/assert"
1717
"github.com/stretchr/testify/require"

integrationtests/smb_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"
1616

17-
fs "github.com/kubernetes-csi/csi-proxy/pkg/filesystem"
18-
fsapi "github.com/kubernetes-csi/csi-proxy/pkg/filesystem/hostapi"
19-
"github.com/kubernetes-csi/csi-proxy/pkg/smb"
20-
smbapi "github.com/kubernetes-csi/csi-proxy/pkg/smb/hostapi"
17+
fs "github.com/kubernetes-csi/csi-proxy/v2/pkg/filesystem"
18+
fsapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/filesystem/hostapi"
19+
"github.com/kubernetes-csi/csi-proxy/v2/pkg/smb"
20+
smbapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/smb/hostapi"
2121
)
2222

2323
func TestSMB(t *testing.T) {

integrationtests/system_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strings"
99
"testing"
1010

11-
system "github.com/kubernetes-csi/csi-proxy/pkg/system"
12-
systemapi "github.com/kubernetes-csi/csi-proxy/pkg/system/hostapi"
11+
system "github.com/kubernetes-csi/csi-proxy/v2/pkg/system"
12+
systemapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/system/hostapi"
1313

1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"

integrationtests/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"testing"
1313
"time"
1414

15-
"github.com/kubernetes-csi/csi-proxy/pkg/volume"
15+
"github.com/kubernetes-csi/csi-proxy/v2/pkg/volume"
1616
)
1717

1818
// getKubeletPathForTest returns the path to the current working directory

integrationtests/volume_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"strings"
99
"testing"
1010

11-
disk "github.com/kubernetes-csi/csi-proxy/pkg/disk"
12-
diskapi "github.com/kubernetes-csi/csi-proxy/pkg/disk/hostapi"
13-
volume "github.com/kubernetes-csi/csi-proxy/pkg/volume"
14-
volumeapi "github.com/kubernetes-csi/csi-proxy/pkg/volume/hostapi"
11+
disk "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk"
12+
diskapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk/hostapi"
13+
volume "github.com/kubernetes-csi/csi-proxy/v2/pkg/volume"
14+
volumeapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/volume/hostapi"
1515

1616
"github.com/stretchr/testify/require"
1717
)

pkg/disk/disk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package disk
33
import (
44
"context"
55

6-
diskapi "github.com/kubernetes-csi/csi-proxy/pkg/disk/hostapi"
6+
diskapi "github.com/kubernetes-csi/csi-proxy/v2/pkg/disk/hostapi"
77
"k8s.io/klog/v2"
88
)
99

pkg/disk/hostapi/hostapi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"syscall"
1111
"unsafe"
1212

13-
"github.com/kubernetes-csi/csi-proxy/pkg/utils"
13+
"github.com/kubernetes-csi/csi-proxy/v2/pkg/utils"
1414
"k8s.io/klog/v2"
1515
)
1616

0 commit comments

Comments
 (0)