Skip to content

Commit d6cfbba

Browse files
authored
Add support for VolumeAccessPoint(FileShareTarget Creation) if volume creation fails but creates (File share) (#81)
* Add support for VolumeAccessPoint(FileShareTarget Creation) if file share creation fails Signed-off-by: Sameer Shaikh <[email protected]> * Add support for VolumeAccessPoint(FileShareTarget Creation) if file share creation fails Signed-off-by: Sameer Shaikh <[email protected]> * Add support for VolumeAccessPoint(FileShareTarget Creation) if file share creation fails Signed-off-by: Sameer Shaikh <[email protected]> * Backward compatibility support for volumeID:VolumeAccessPoint Signed-off-by: Sameer Shaikh <[email protected]> * Populate required objects for VolumeAccessPointCreation Signed-off-by: Sameer Shaikh <[email protected]> * Populate required objects for VolumeAccessPointCreation Signed-off-by: Sameer Shaikh <[email protected]> * Populate required objects for VolumeAccessPointCreation Signed-off-by: Sameer Shaikh <[email protected]> --------- Signed-off-by: Sameer Shaikh <[email protected]>
1 parent c62b361 commit d6cfbba

File tree

5 files changed

+125
-128
lines changed

5 files changed

+125
-128
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ BUILD_NUMBER?=unknown
3131
GO111MODULE_FLAG?=on
3232
export GO111MODULE=$(GO111MODULE_FLAG)
3333

34-
export LINT_VERSION="1.51.2"
34+
export LINT_VERSION="1.56.2"
3535

3636
COLOR_YELLOW=\033[0;33m
3737
COLOR_RESET=\033[0m

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ go 1.20
44

55
require (
66
github.com/IBM/ibm-csi-common v1.1.13
7-
github.com/IBM/ibmcloud-volume-file-vpc v1.2.2
7+
github.com/IBM/ibmcloud-volume-file-vpc v1.2.3
88
github.com/IBM/ibmcloud-volume-interface v1.2.4
9-
github.com/IBM/secret-utils-lib v1.1.8
9+
github.com/IBM/secret-utils-lib v1.1.9
1010
github.com/container-storage-interface/spec v1.8.0
1111
github.com/golang/glog v1.1.0
12-
github.com/google/uuid v1.3.0
12+
github.com/google/uuid v1.6.0
1313
github.com/kubernetes-csi/csi-test/v4 v4.4.0
1414
github.com/prometheus/client_golang v1.16.0
15-
github.com/stretchr/testify v1.8.2
15+
github.com/stretchr/testify v1.8.4
1616
go.uber.org/zap v1.20.0
17-
golang.org/x/net v0.19.0
18-
golang.org/x/sys v0.15.0
17+
golang.org/x/net v0.24.0
18+
golang.org/x/sys v0.19.0
1919
google.golang.org/grpc v1.56.3
2020
k8s.io/api v0.28.6
2121
k8s.io/apimachinery v0.28.6
@@ -28,9 +28,9 @@ require (
2828
require (
2929
github.com/BurntSushi/toml v1.0.0 // indirect
3030
github.com/IBM-Cloud/ibm-cloud-cli-sdk v0.6.7 // indirect
31-
github.com/IBM/go-sdk-core/v5 v5.9.1 // indirect
31+
github.com/IBM/go-sdk-core/v5 v5.15.1 // indirect
3232
github.com/IBM/secret-common-lib v1.1.8 // indirect
33-
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
33+
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3434
github.com/beorn7/perks v1.0.1 // indirect
3535
github.com/blang/semver/v4 v4.0.0 // indirect
3636
github.com/cespare/xxhash/v2 v2.2.0 // indirect
@@ -39,61 +39,60 @@ require (
3939
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
4040
github.com/fatih/structs v1.1.0 // indirect
4141
github.com/fsnotify/fsnotify v1.6.0 // indirect
42-
github.com/go-logr/logr v1.2.4 // indirect
43-
github.com/go-openapi/errors v0.19.8 // indirect
42+
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
43+
github.com/go-logr/logr v1.4.1 // indirect
44+
github.com/go-openapi/errors v0.21.0 // indirect
4445
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4546
github.com/go-openapi/jsonreference v0.20.2 // indirect
46-
github.com/go-openapi/strfmt v0.21.1 // indirect
47+
github.com/go-openapi/strfmt v0.22.0 // indirect
4748
github.com/go-openapi/swag v0.22.3 // indirect
48-
github.com/go-playground/locales v0.14.0 // indirect
49-
github.com/go-playground/universal-translator v0.18.0 // indirect
50-
github.com/go-playground/validator/v10 v10.11.1 // indirect
51-
github.com/go-stack/stack v1.8.0 // indirect
49+
github.com/go-playground/locales v0.14.1 // indirect
50+
github.com/go-playground/universal-translator v0.18.1 // indirect
51+
github.com/go-playground/validator/v10 v10.17.0 // indirect
5252
github.com/gofrs/uuid v4.4.0+incompatible // indirect
5353
github.com/gogo/protobuf v1.3.2 // indirect
5454
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
5555
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
5656
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5757
github.com/golang/protobuf v1.5.4 // indirect
5858
github.com/google/gnostic-models v0.6.8 // indirect
59-
github.com/google/go-cmp v0.5.9 // indirect
59+
github.com/google/go-cmp v0.6.0 // indirect
6060
github.com/google/gofuzz v1.2.0 // indirect
6161
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
62-
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
62+
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
6363
github.com/imdario/mergo v0.3.7 // indirect
6464
github.com/josharian/intern v1.0.0 // indirect
6565
github.com/json-iterator/go v1.1.12 // indirect
6666
github.com/kelseyhightower/envconfig v1.4.0 // indirect
67-
github.com/leodido/go-urn v1.2.1 // indirect
67+
github.com/leodido/go-urn v1.3.0 // indirect
6868
github.com/mailru/easyjson v0.7.7 // indirect
6969
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
70-
github.com/mitchellh/mapstructure v1.4.1 // indirect
70+
github.com/mitchellh/mapstructure v1.5.0 // indirect
7171
github.com/moby/sys/mountinfo v0.6.2 // indirect
7272
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7373
github.com/modern-go/reflect2 v1.0.2 // indirect
7474
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
7575
github.com/nxadm/tail v1.4.11 // indirect
7676
github.com/oklog/ulid v1.3.1 // indirect
7777
github.com/onsi/ginkgo v1.16.5 // indirect
78-
github.com/onsi/gomega v1.27.6 // indirect
78+
github.com/onsi/gomega v1.33.0 // indirect
7979
github.com/pkg/errors v0.9.1 // indirect
8080
github.com/pmezard/go-difflib v1.0.0 // indirect
8181
github.com/prometheus/client_model v0.4.0 // indirect
8282
github.com/prometheus/common v0.44.0 // indirect
8383
github.com/prometheus/procfs v0.10.1 // indirect
8484
github.com/spf13/pflag v1.0.5 // indirect
85-
go.mongodb.org/mongo-driver v1.7.5 // indirect
85+
go.mongodb.org/mongo-driver v1.13.1 // indirect
8686
go.uber.org/atomic v1.11.0 // indirect
8787
go.uber.org/multierr v1.11.0 // indirect
88-
golang.org/x/crypto v0.16.0 // indirect
88+
golang.org/x/crypto v0.22.0 // indirect
8989
golang.org/x/oauth2 v0.8.0 // indirect
90-
golang.org/x/term v0.15.0 // indirect
90+
golang.org/x/term v0.19.0 // indirect
9191
golang.org/x/text v0.14.0 // indirect
9292
golang.org/x/time v0.3.0 // indirect
9393
google.golang.org/appengine v1.6.7 // indirect
9494
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
9595
google.golang.org/protobuf v1.33.0 // indirect
96-
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
9796
gopkg.in/inf.v0 v0.9.1 // indirect
9897
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
9998
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -109,6 +108,7 @@ require (
109108
)
110109

111110
replace (
111+
github.com/onsi/gomega => github.com/onsi/gomega v1.27.6
112112
k8s.io/api => k8s.io/api v0.28.6
113113
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.28.6
114114
k8s.io/apimachinery => k8s.io/apimachinery v0.28.6

0 commit comments

Comments
 (0)