Skip to content

Commit 8227a96

Browse files
committed
Dependency update for k8s/volume/util
1 parent c9b4546 commit 8227a96

File tree

1,307 files changed

+388242
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,307 files changed

+388242
-61
lines changed

Gopkg.lock

+605-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+10-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
# go-tests = true
2525
# unused-packages = true
2626

27-
2827
[[constraint]]
2928
name = "cloud.google.com/go"
3029
version = "0.19.0"
@@ -42,9 +41,9 @@
4241
branch = "master"
4342
name = "github.com/golang/glog"
4443

45-
[[constraint]]
46-
name = "github.com/stretchr/testify"
47-
version = "1.2.1"
44+
#[[constraint]]
45+
# name = "github.com/stretchr/testify"
46+
# version = "1.2.1"
4847

4948
[[constraint]]
5049
branch = "master"
@@ -63,7 +62,7 @@
6362
version = "1.10.0"
6463

6564
[[constraint]]
66-
branch = "master"
65+
branch = "release-1.11"
6766
name = "k8s.io/apimachinery"
6867

6968
[[constraint]]
@@ -78,7 +77,12 @@
7877
[[constraint]]
7978
branch = "v0.3.0"
8079
name = "github.com/kubernetes-csi/csi-test"
81-
80+
8281
[[constraint]]
8382
branch = "master"
8483
name = "k8s.io/test-infra"
84+
85+
# Transitive dependency of k8s.io/kubernetes/pkg/util/parsers
86+
[[override]]
87+
branch = "master"
88+
name = "github.com/docker/distribution"

pkg/gce-pd-csi-driver/node.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (ns *GCENodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePub
6767
return nil, status.Error(codes.InvalidArgument, "NodePublishVolume Volume Capability must be provided")
6868
}
6969

70-
notMnt, err := ns.Mounter.Interface.IsNotMountPoint(targetPath)
70+
notMnt, err := ns.Mounter.Interface.IsLikelyNotMountPoint(targetPath)
7171
if err != nil && !os.IsNotExist(err) {
7272
glog.Errorf("cannot validate mount point: %s %v", targetPath, err)
7373
return nil, err
@@ -134,7 +134,7 @@ func (ns *GCENodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeU
134134
return nil, status.Error(codes.InvalidArgument, "NodeUnpublishVolume Target Path must be provided")
135135
}
136136

137-
err := volumeutils.UnmountMountPoint(targetPath, ns.Mounter.Interface, true /* bind mount */)
137+
err := volumeutils.UnmountMountPoint(targetPath, ns.Mounter.Interface, false /* bind mount */)
138138
if err != nil {
139139
return nil, status.Error(codes.Internal, fmt.Sprintf("Unmount failed: %v\nUnmounting arguments: %s\n", err, targetPath))
140140
}

vendor/github.com/beorn7/perks/LICENSE

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/beorn7/perks/quantile/stream.go

+316
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)