forked from kubernetes-retired/kubefed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gopkg.toml
54 lines (41 loc) · 1.32 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
# Users add deps lines here
required = ["github.com/kubernetes/repo-infra/verify/boilerplate/test"]
[prune]
go-tests = true
non-go = true
unused-packages = true
[[prune.project]]
name = "github.com/kubernetes/repo-infra"
non-go = false
unused-packages = false
[[prune.project]]
name = "k8s.io/cluster-registry"
non-go = false
unused-packages = false
# k8s.io/kubectl wants master of apimachinery and client-go, but
# kubebuilder is pinning to the version below. Until kubectl comes
# pinned to versions compatible with kubebuilder, it will be necessary
# to maintain overrides.
[[override]]
name="k8s.io/apimachinery"
version="kubernetes-1.10.1"
[[override]]
name="k8s.io/client-go"
version="kubernetes-1.10.1"
# Note: Stanzas below are generated by Kubebuilder and may be rewritten when
# upgrading kubebuilder versions.
# STANZAS BELOW ARE GENERATED AND MAY BE WRITTEN - DO NOT MODIFY BELOW THIS LINE.
[[override]]
name="sigs.k8s.io/controller-runtime"
version="v0.1.1"
[[override]]
name="sigs.k8s.io/controller-tools"
version="v0.1.1"
# For dependency below: Refer to issue https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
version="v1.4.7"
[[constraint]]
branch = "master"
name = "k8s.io/kubectl"