Remove pkg/util/mount (moved out of tree)

This patch removes pkg/util/mount completely, and replaces it with the
mount package now located at k8s.io/utils/mount. The code found at
k8s.io/utils/mount was moved there from pkg/util/mount, so the code is
identical, just no longer in-tree to k/k.

Kubernetes-commit: 0c5c3d8bb97d18a2a25977e92b3f7a49074c2ecb
This commit is contained in:
Travis Rhoden
2019-11-14 13:30:00 -07:00
committed by Kubernetes Publisher
parent 055fb85f0a
commit b3ad0016ff
2 changed files with 11 additions and 14 deletions
+9 -8
View File
@@ -5,18 +5,19 @@ module k8s.io/sample-controller
go 1.12
require (
k8s.io/api v0.0.0-20191115015536-da2cf76beda8
k8s.io/apimachinery v0.0.0-20191115015347-3c7067801da2
k8s.io/client-go v0.0.0-20191114220110-6f03b71b98e6
k8s.io/code-generator v0.0.0-20191114215150-2a85f169f05f
k8s.io/api v0.0.0
k8s.io/apimachinery v0.0.0
k8s.io/client-go v0.0.0
k8s.io/code-generator v0.0.0
k8s.io/klog v1.0.0
)
replace (
golang.org/x/sys => golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // pinned to release-branch.go1.13
golang.org/x/tools => golang.org/x/tools v0.0.0-20190821162956-65e3620a7ae7 // pinned to release-branch.go1.13
k8s.io/api => k8s.io/api v0.0.0-20191115015536-da2cf76beda8
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191115015347-3c7067801da2
k8s.io/client-go => k8s.io/client-go v0.0.0-20191114220110-6f03b71b98e6
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20191114215150-2a85f169f05f
k8s.io/api => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/client-go => ../client-go
k8s.io/code-generator => ../code-generator
k8s.io/sample-controller => ../sample-controller
)