forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
172 lines (133 loc) · 3.73 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
required = [
"k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/conversion-gen",
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/informer-gen",
"k8s.io/kube-openapi/cmd/openapi-gen"
]
ignored = [
"github.com/spf13/afero/sftp"
]
[[override]]
name = "k8s.io/api"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/apiserver"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/client-go"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/apiextensions-apiserver"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/cluster-bootstrap"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/component-base"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/kube-aggregator"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/code-generator"
version = "kubernetes-1.14.0"
[[override]]
name = "k8s.io/kube-openapi"
revision = "5e45bb682580c9be5ffa4d27d367f0eeba125c7b" # kubernetes-1.14.0
[[override]]
name = "k8s.io/klog"
version = "v0.1.0"
[[override]]
name = "sigs.k8s.io/controller-runtime"
version = "0.1.10"
[[override]]
name = "github.com/jmespath/go-jmespath"
revision = "c2b33e84"
[[override]]
name = "github.com/coreos/etcd"
version = "3.3.10"
[[override]]
name = "cloud.google.com/go"
version = "0.18.0"
[[constraint]]
name = "github.com/aliyun/alibaba-cloud-sdk-go"
version = "1.49.2"
[[override]]
name = "github.com/gardener/external-dns-management"
version = "0.1.0"
[[constraint]]
name = "github.com/gardener/machine-controller-manager"
version = "0.14.0"
[[constraint]]
name = "k8s.io/helm"
version = "v2.7.2"
[[constraint]]
name = "github.com/prometheus/client_golang"
version = "0.9.0"
[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "~1.12.48"
[[constraint]]
name = "github.com/ghodss/yaml"
version = "^1.0.0"
[[constraint]]
name = "github.com/spf13/cobra"
version = "^0.0.1"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "^1.0.4"
[[constraint]]
name = "github.com/Masterminds/semver"
version = "~1.4.0"
[[constraint]]
name = "github.com/robfig/cron"
revision = "2315d5715e36303a941d907f038da7f7c44c773b"
# use the same version that is referenced by k8s.io/apiserver
[[override]]
name = "github.com/evanphx/json-patch"
revision = "5858425f75500d40c52783dce87d085a483ce135"
[[override]]
name = "sigs.k8s.io/structured-merge-diff"
revision = "e85c7b244fd2cc57bb829d73a061f93a441e63ce"
[[constraint]]
name = "github.com/hashicorp/go-multierror"
revision = "3d5d8f294aa03d8e98859feac328afbdf1ae0703"
[[constraint]]
name = "github.com/pkg/errors"
revision = "816c9085562cd7ee03e7f8188a1cfd942858cded"
# Dependencies for testing purposes only
[[constraint]]
name = "github.com/onsi/gomega"
version = "~1.3.0"
[[constraint]]
name = "github.com/onsi/ginkgo"
version = "~1.4.0"
[[constraint]]
name = "github.com/golang/mock"
version = "1.2.0"
[[constraint]]
name = "github.com/aliyun/aliyun-oss-go-sdk"
version = "1.9.5"
# use the same version that is referenced by k8s.io, mainly required by Helm
# https://github.com/kubernetes/kubernetes/blob/v1.13.1/Godeps/Godeps.json#L2996
[[override]]
name = "github.com/russross/blackfriday"
revision = "300106c228d52c8941d4b3de6054a6062a86dda3"
[prune]
unused-packages = true
go-tests = true
non-go = true
[[prune.project]]
name = "k8s.io/code-generator"
unused-packages = false
non-go = false
[[prune.project]]
name = "k8s.io/kube-openapi"
unused-packages = false
non-go = false