mirror of
https://github.com/kubernetes/sample-controller.git
synced 2026-05-19 00:00:14 +08:00
Fix CRD validation error for 'items' field
Signed-off-by: He Xiaoxi <xxhe@alauda.io> Kubernetes-commit: 2e37a3bebe8c4a628e973e231d95c4ce5261c15f
This commit is contained in:
committed by
Kubernetes Publisher
parent
294bc0f668
commit
470d1589ab
@@ -5,21 +5,24 @@ module k8s.io/sample-controller
|
||||
go 1.12
|
||||
|
||||
require (
|
||||
k8s.io/api v0.0.0-20190624085159-95846d7ef82a
|
||||
k8s.io/apimachinery v0.0.0-20190624085041-961b39a1baa0
|
||||
k8s.io/client-go v0.0.0-20190624085356-2c6e35a5b9cf
|
||||
k8s.io/code-generator v0.0.0-20190620073620-d55040311883
|
||||
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 v0.3.1
|
||||
)
|
||||
|
||||
replace (
|
||||
github.com/stretchr/objx => github.com/stretchr/objx v0.1.1
|
||||
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20181025213731-e84da0312774
|
||||
golang.org/x/net => golang.org/x/net v0.0.0-20190206173232-65e2d4e15006
|
||||
golang.org/x/sync => golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
|
||||
golang.org/x/sys => golang.org/x/sys v0.0.0-20190209173611-3b5209105503
|
||||
golang.org/x/tools => golang.org/x/tools v0.0.0-20190313210603-aa82965741a9
|
||||
k8s.io/api => k8s.io/api v0.0.0-20190624085159-95846d7ef82a
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190624085041-961b39a1baa0
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20190624085356-2c6e35a5b9cf
|
||||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20190620073620-d55040311883
|
||||
gopkg.in/check.v1 => gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
|
||||
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