Add comments to explain golang.org replace directives

Kubernetes-commit: 9f40e19d7ac9e2203c23814701468a26eee1964f
This commit is contained in:
Jordan Liggitt
2019-11-12 23:54:26 -05:00
committed by Kubernetes Publisher
parent de0ba49f28
commit 424188e943
2 changed files with 11 additions and 14 deletions

21
go.mod
View File

@@ -5,18 +5,19 @@ module k8s.io/sample-controller
go 1.12
require (
k8s.io/api v0.0.0-20191109101512-6d4d1612ba53
k8s.io/apimachinery v0.0.0-20191109100837-dffb012825f2
k8s.io/client-go v0.0.0-20191109102209-3c0d1af94be5
k8s.io/code-generator v0.0.0-20191109100332-a9a0d9c0b3aa
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
golang.org/x/tools => golang.org/x/tools v0.0.0-20190821162956-65e3620a7ae7
k8s.io/api => k8s.io/api v0.0.0-20191109101512-6d4d1612ba53
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191109100837-dffb012825f2
k8s.io/client-go => k8s.io/client-go v0.0.0-20191109102209-3c0d1af94be5
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20191109100332-a9a0d9c0b3aa
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 => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/client-go => ../client-go
k8s.io/code-generator => ../code-generator
k8s.io/sample-controller => ../sample-controller
)