forked from kubeflow/training-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
92 lines (72 loc) · 2.04 KB
/
Gopkg.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
ignored = ["github.com/kubeflow/tf-operator"]
required = [
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/informer-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/openapi-gen",
# needed by generated clientsets, but not an explicit dep in client-gen itself
"k8s.io/apimachinery/pkg/apimachinery/registered",
]
[[constraint]]
name = "github.com/emicklei/go-restful"
version = "2.7.1"
[[constraint]]
name = "github.com/ghodss/yaml"
version = "1.0.0"
[[constraint]]
branch = "master"
name = "github.com/go-openapi/spec"
[[constraint]]
name = "github.com/gogo/protobuf"
version = "1.0.0"
[[constraint]]
branch = "master"
name = "github.com/golang/glog"
[[constraint]]
name = "github.com/golang/protobuf"
version = "1.1.0"
[[constraint]]
name = "github.com/juju/ratelimit"
version = "1.0.1"
[[constraint]]
branch = "master"
name = "github.com/onrik/logrus"
[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "~1.0.4"
[[constraint]]
name = "k8s.io/client-go"
version = "~6.0.0"
[[constraint]]
name = "k8s.io/kube-openapi"
branch = "release-1.9"
[[constraint]]
name = "k8s.io/kubernetes"
version = "~v1.9.0"
[[constraint]]
name = "k8s.io/api"
branch = "release-1.9"
[[constraint]]
name = "k8s.io/apimachinery"
branch = "release-1.9"
[[constraint]]
name = "k8s.io/code-generator"
# We can not use master since the generated package name is changed from tensorflow to kubeflow.
revision = "961bc077103364eb5bda2c40e2b560d068c9a8c6"
[[override]]
# To solve undefined: reference.ParseNormalizedNamed in Kubernetes.
name = "github.com/docker/distribution"
revision = "edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c"
[prune]
go-tests = true
unused-packages = true
non-go = true
[[prune.project]]
name = "k8s.io/code-generator"
unused-packages = false
non-go = false