Merge pull request #96549 from caesarxuchao/net-sys-dep-update
update golang.org/x/net and golang.org/x/sys Kubernetes-commit: 85cd7c530bf55cd369bdcb92a5a31d3d1547113f
This commit is contained in:
parent
e5055483d1
commit
7255401745
|
@ -820,7 +820,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "golang.org/x/net",
|
||||
"Rev": "ab3426394381"
|
||||
"Rev": "69a78807bb2b"
|
||||
},
|
||||
{
|
||||
"ImportPath": "golang.org/x/oauth2",
|
||||
|
@ -832,7 +832,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "golang.org/x/sys",
|
||||
"Rev": "ed371f2e16b4"
|
||||
"Rev": "5cba982894dd"
|
||||
},
|
||||
{
|
||||
"ImportPath": "golang.org/x/text",
|
||||
|
@ -920,31 +920,31 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/api",
|
||||
"Rev": "a5dfa0b8c2b2"
|
||||
"Rev": "e29b22345993"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/apimachinery",
|
||||
"Rev": "000b5f4f8623"
|
||||
"Rev": "323157012f87"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/cli-runtime",
|
||||
"Rev": "022e66e1905f"
|
||||
"Rev": "fbe98341a6e2"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/client-go",
|
||||
"Rev": "30548acd0a9e"
|
||||
"Rev": "d396fd99ebba"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/code-generator",
|
||||
"Rev": "ed440de59c89"
|
||||
"Rev": "ebc5cde1959a"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/component-base",
|
||||
"Rev": "d069ee2b5079"
|
||||
"Rev": "3e59e5bc0401"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/component-helpers",
|
||||
"Rev": "2da294c6f4f4"
|
||||
"Rev": "77b3698ccf7c"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/gengo",
|
||||
|
@ -960,7 +960,7 @@
|
|||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/metrics",
|
||||
"Rev": "9446cab9abd5"
|
||||
"Rev": "f246df756006"
|
||||
},
|
||||
{
|
||||
"ImportPath": "k8s.io/utils",
|
||||
|
|
31
go.mod
31
go.mod
|
@ -34,28 +34,27 @@ require (
|
|||
github.com/stretchr/testify v1.4.0
|
||||
golang.org/x/sys v0.0.0-20201112073958-5cba982894dd
|
||||
gopkg.in/yaml.v2 v2.2.8
|
||||
k8s.io/api v0.0.0
|
||||
k8s.io/apimachinery v0.0.0
|
||||
k8s.io/cli-runtime v0.0.0
|
||||
k8s.io/client-go v0.0.0
|
||||
k8s.io/component-base v0.0.0
|
||||
k8s.io/component-helpers v0.0.0
|
||||
k8s.io/api v0.0.0-20201113170045-e29b22345993
|
||||
k8s.io/apimachinery v0.0.0-20201113165551-323157012f87
|
||||
k8s.io/cli-runtime v0.0.0-20201113175306-fbe98341a6e2
|
||||
k8s.io/client-go v0.0.0-20201113170634-d396fd99ebba
|
||||
k8s.io/component-base v0.0.0-20201113171707-3e59e5bc0401
|
||||
k8s.io/component-helpers v0.0.0-20201113172010-77b3698ccf7c
|
||||
k8s.io/klog/v2 v2.4.0
|
||||
k8s.io/kube-openapi v0.0.0-20201107163737-74b467f3a622
|
||||
k8s.io/metrics v0.0.0
|
||||
k8s.io/metrics v0.0.0-20201113174952-f246df756006
|
||||
k8s.io/utils v0.0.0-20201104234853-8146046b121e
|
||||
sigs.k8s.io/kustomize v2.0.3+incompatible
|
||||
sigs.k8s.io/yaml v1.2.0
|
||||
)
|
||||
|
||||
replace (
|
||||
k8s.io/api => ../api
|
||||
k8s.io/apimachinery => ../apimachinery
|
||||
k8s.io/cli-runtime => ../cli-runtime
|
||||
k8s.io/client-go => ../client-go
|
||||
k8s.io/code-generator => ../code-generator
|
||||
k8s.io/component-base => ../component-base
|
||||
k8s.io/component-helpers => ../component-helpers
|
||||
k8s.io/kubectl => ../kubectl
|
||||
k8s.io/metrics => ../metrics
|
||||
k8s.io/api => k8s.io/api v0.0.0-20201113170045-e29b22345993
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20201113165551-323157012f87
|
||||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20201113175306-fbe98341a6e2
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20201113170634-d396fd99ebba
|
||||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20201113165213-ebc5cde1959a
|
||||
k8s.io/component-base => k8s.io/component-base v0.0.0-20201113171707-3e59e5bc0401
|
||||
k8s.io/component-helpers => k8s.io/component-helpers v0.0.0-20201113172010-77b3698ccf7c
|
||||
k8s.io/metrics => k8s.io/metrics v0.0.0-20201113174952-f246df756006
|
||||
)
|
||||
|
|
8
go.sum
8
go.sum
|
@ -552,6 +552,13 @@ honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWh
|
|||
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
|
||||
k8s.io/api v0.0.0-20201113170045-e29b22345993/go.mod h1:362/GqkXNVPwoEwWpkZKzwZMG+LMlN10vnhCeXFI3aY=
|
||||
k8s.io/apimachinery v0.0.0-20201113165551-323157012f87/go.mod h1:+KfUCNguqd2qWwVjquYpKqADrfHI1YLkVv092b20wx4=
|
||||
k8s.io/cli-runtime v0.0.0-20201113175306-fbe98341a6e2/go.mod h1:msFGsuUSL4AKZk9JJQV+0sjVSdf963CU9RQ18hB/cJA=
|
||||
k8s.io/client-go v0.0.0-20201113170634-d396fd99ebba/go.mod h1:fRGUMOfT5+RRf734C2FMFBMKwQPdjVvywzQFAolAtuY=
|
||||
k8s.io/code-generator v0.0.0-20201113165213-ebc5cde1959a/go.mod h1:jaIWYAG7S0pM0FEWEdSGbkWWuU/nAI+yEvfUdCZUZEc=
|
||||
k8s.io/component-base v0.0.0-20201113171707-3e59e5bc0401/go.mod h1:CcStpifhgPocWuLBoGneqkfz5QOuX+8vIk89S/r4FeU=
|
||||
k8s.io/component-helpers v0.0.0-20201113172010-77b3698ccf7c/go.mod h1:uQvGzuXzLY20B1HC6cE3W7QB5X93DuY7pBW3d2Dxsyc=
|
||||
k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
|
||||
k8s.io/gengo v0.0.0-20200428234225-8167cfdcfc14/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
|
||||
k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE=
|
||||
|
@ -559,6 +566,7 @@ k8s.io/klog/v2 v2.4.0 h1:7+X0fUguPyrKEC4WjH8iGDg3laWgMo5tMnRTIGTTxGQ=
|
|||
k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y=
|
||||
k8s.io/kube-openapi v0.0.0-20201107163737-74b467f3a622 h1:CJasJGBT+Atu2XLJHJ90GJBqW23sfBn4vtTlB/+aJJ4=
|
||||
k8s.io/kube-openapi v0.0.0-20201107163737-74b467f3a622/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM=
|
||||
k8s.io/metrics v0.0.0-20201113174952-f246df756006/go.mod h1:8u9liV4ZtHr6yU2+HRcmYfD3LdXkR4etw+FccSllBdw=
|
||||
k8s.io/utils v0.0.0-20201104234853-8146046b121e h1:dUhh0zO/94tOe9DB05HFGE69ofectI1PBCmIxO612MI=
|
||||
k8s.io/utils v0.0.0-20201104234853-8146046b121e/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
|
|
Loading…
Reference in New Issue