forked from projectcalico/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
56 lines (51 loc) · 2.63 KB
/
go.mod
File metadata and controls
56 lines (51 loc) · 2.63 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
module github.com/projectcalico/node
go 1.15
require (
github.com/kelseyhightower/confd v0.0.0-00010101000000-000000000000
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.1
github.com/pkg/errors v0.9.1
github.com/projectcalico/cni-plugin v1.11.1-0.20210617223636-215e3521e4f2
github.com/projectcalico/felix v0.0.0-20210617052254-9e85307e367e
github.com/projectcalico/libcalico-go v1.7.2-0.20210617224551-0d2f20cd1379
github.com/projectcalico/typha v0.7.3-0.20210617230427-4489e0d7253b
github.com/sirupsen/logrus v1.7.0
github.com/vishvananda/netlink v1.1.0
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
gopkg.in/fsnotify/fsnotify.v1 v1.4.7
k8s.io/api v0.21.0-rc.0
k8s.io/apimachinery v0.21.0-rc.0
k8s.io/client-go v0.21.0-rc.0
)
replace (
github.com/Microsoft/hcsshim => github.com/projectcalico/hcsshim v0.8.9-calico
github.com/kelseyhightower/confd => github.com/projectcalico/confd v1.0.1-0.20210617231659-7b43d5b4deed
github.com/sirupsen/logrus => github.com/projectcalico/logrus v1.0.4-calico
// Need replacements for all the k8s subsidiary projects that are pulled in indirectly because
// the kubernets repo pulls them in via a replacement to its own vendored copies, which doesn't work for
// transient imports.
k8s.io/api => k8s.io/api v0.21.0-rc.0
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.0-rc.0
k8s.io/apimachinery => k8s.io/apimachinery v0.21.0-rc.0
k8s.io/apiserver => k8s.io/apiserver v0.21.0-rc.0
k8s.io/cli-runtime => k8s.io/cli-runtime v0.21.0-rc.0
k8s.io/client-go => k8s.io/client-go v0.21.0-rc.0
k8s.io/cloud-provider => k8s.io/cloud-provider v0.21.0-rc.0
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.21.0-rc.0
k8s.io/code-generator => k8s.io/code-generator v0.21.0-rc.0
k8s.io/component-base => k8s.io/component-base v0.21.0-rc.0
k8s.io/component-helpers => k8s.io/component-helpers v0.21.0-rc.0
k8s.io/controller-manager => k8s.io/controller-manager v0.21.0-rc.0
k8s.io/cri-api => k8s.io/cri-api v0.21.0-rc.0
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.21.0-rc.0
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.21.0-rc.0
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.21.0-rc.0
k8s.io/kube-proxy => k8s.io/kube-proxy v0.21.0-rc.0
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.21.0-rc.0
k8s.io/kubectl => k8s.io/kubectl v0.21.0-rc.0
k8s.io/kubelet => k8s.io/kubelet v0.21.0-rc.0
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.21.0-rc.0
k8s.io/metrics => k8s.io/metrics v0.21.0-rc.0
k8s.io/mount-utils => k8s.io/mount-utils v0.21.0-rc.0
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.21.0-rc.0
)