forked from openshift/cluster-network-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGopkg.toml
More file actions
85 lines (67 loc) · 2.21 KB
/
Gopkg.toml
File metadata and controls
85 lines (67 loc) · 2.21 KB
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
# Force dep to vendor the code generators, which aren't imported just used at dev time.
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/code-generator/cmd/openapi-gen",
"k8s.io/gengo/args",
]
[[override]]
# Had to add this since I was getting golang panics: https://github.com/golang/dep/issues/1799
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
[[override]]
name = "k8s.io/code-generator"
version = "kubernetes-1.16.0"
[[override]]
name = "k8s.io/api"
version = "kubernetes-1.16.0"
[[override]]
name = "k8s.io/apiextensions-apiserver"
version = "kubernetes-1.16.0"
[[override]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.16.0"
[[override]]
name = "k8s.io/client-go"
version = "kubernetes-1.16.0"
[[override]]
name = "github.com/coreos/prometheus-operator"
version = "=v0.26.0"
[[override]]
name = "sigs.k8s.io/controller-runtime"
# switch back to upstream when https://github.com/kubernetes-sigs/controller-runtime/pull/588 lands
revision = "d02b94982e5761c7c1455279c460cd383a9c04d4"
source = "https://github.com/munnerz/controller-runtime.git"
[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
# branch = "v0.4.x" #osdk_branch_annotation
version = "=v0.4.1" #osdk_version_annotation
[prune]
go-tests = true
non-go = true
[[prune.project]]
name = "k8s.io/code-generator"
non-go = false
[[constraint]]
name = "github.com/Masterminds/sprig"
version = "^2"
[[constraint]]
name = "github.com/vishvananda/netlink"
version = "1.0.0"
[[constraint]]
branch = "master"
name = "github.com/openshift/api"
[[constraint]]
name = "k8s.io/kube-proxy"
version = "kubernetes-1.16.0"
[[constraint]]
name = "github.com/gophercloud/gophercloud"
revision="17584a22adf89c48eb1f2518e71326b3b01ba573"
[[constraint]]
name = "github.com/containernetworking/cni"
version = "0.7.1"