forked from linode/kontainer-engine-driver-lke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
118 lines (81 loc) · 4.77 KB
/
go.mod
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
module github.com/linode/kontainer-engine-driver-lke
go 1.18
require (
github.com/google/uuid v1.1.1
github.com/linode/linodego v1.19.0
github.com/linode/linodego/k8s v0.0.0-20230628150657-a889f87e7482
github.com/rancher/kontainer-engine v0.0.4-dev.0.20210625182816-1a4f4e73a324
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.7.1
golang.org/x/oauth2 v0.10.0
k8s.io/api v0.23.4
k8s.io/apimachinery v0.23.4
k8s.io/client-go v12.0.0+incompatible
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-resty/resty/v2 v2.7.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/imdario/mergo v0.3.7 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rancher/rke v1.2.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9 // indirect
google.golang.org/grpc v1.26.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/klog v1.0.0 // indirect
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect
sigs.k8s.io/yaml v1.2.0 // indirect
)
replace bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d
replace cloud.google.com/go => cloud.google.com/go v0.49.0
replace git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v35.0.0+incompatible
replace github.com/Azure/go-ansiterm => github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
replace github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
replace github.com/Azure/go-autorest/autorest/adal => github.com/Azure/go-autorest/autorest/adal v0.5.0
replace github.com/Azure/go-autorest/autorest/azure/auth => github.com/Azure/go-autorest/autorest/azure/auth v0.2.0
replace github.com/Azure/go-autorest/autorest/date => github.com/Azure/go-autorest/autorest/date v0.1.0
replace github.com/Azure/go-autorest/autorest/mocks => github.com/Azure/go-autorest/autorest/mocks v0.2.0
replace github.com/Azure/go-autorest/autorest/to => github.com/Azure/go-autorest/autorest/to v0.2.0
replace github.com/Azure/go-autorest/autorest/validation => github.com/Azure/go-autorest/autorest/validation v0.1.0
replace github.com/Azure/go-autorest/logger => github.com/Azure/go-autorest/logger v0.1.0
replace github.com/Azure/go-autorest/tracing => github.com/Azure/go-autorest/tracing v0.5.0
replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.1
replace github.com/golang/protobuf => github.com/golang/protobuf v1.3.2
replace github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.3.1
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
replace github.com/prometheus-operator/prometheus-operator => github.com/prometheus-operator/prometheus-operator v0.42.0
replace github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring => github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.42.0
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.7.1
replace go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
replace google.golang.org/api => google.golang.org/api v0.14.0
replace google.golang.org/genproto => google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9
replace google.golang.org/grpc => google.golang.org/grpc v1.26.0
replace k8s.io/api => k8s.io/api v0.18.9
replace k8s.io/apimachinery => k8s.io/apimachinery v0.18.9
replace k8s.io/apiserver => k8s.io/apiserver v0.18.9
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.9
replace k8s.io/client-go => k8s.io/client-go v0.18.9
replace k8s.io/component-base => k8s.io/component-base v0.18.9
replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
replace k8s.io/utils => k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89