mirror of
https://github.com/kubernetes/sample-controller.git
synced 2026-06-07 00:05:04 +08:00
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:
committed by
Kubernetes Publisher
parent
055fb85f0a
commit
b3ad0016ff
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user