@@ -50,6 +50,8 @@ require (
50
50
gotest.tools/v3 v3.5.1
51
51
)
52
52
53
+ require github.com/vishvananda/netlink v1.2.1-beta.2
54
+
53
55
require (
54
56
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
55
57
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
@@ -78,22 +80,20 @@ require (
78
80
github.com/docker/docker-credential-helpers v0.7.0 // indirect
79
81
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect
80
82
github.com/docker/go-metrics v0.0.1 // indirect
81
- github.com/emicklei/go-restful/v3 v3.10.1 // indirect
82
83
github.com/felixge/httpsnoop v1.0.3 // indirect
83
84
github.com/fvbommel/sortorder v1.0.2 // indirect
84
85
github.com/go-logr/logr v1.2.4 // indirect
85
86
github.com/go-logr/stdr v1.2.2 // indirect
86
- github.com/go-openapi/jsonpointer v0.19.5 // indirect
87
- github.com/go-openapi/jsonreference v0.20.0 // indirect
88
- github.com/go-openapi/swag v0.19.14 // indirect
89
87
github.com/gofrs/flock v0.8.1 // indirect
90
88
github.com/gofrs/uuid v4.2.0+incompatible // indirect
91
89
github.com/gogo/googleapis v1.4.1 // indirect
92
90
github.com/gogo/protobuf v1.3.2 // indirect
93
91
github.com/golang/protobuf v1.5.3 // indirect
94
92
github.com/google/gnostic v0.5.7-v3refs // indirect
93
+ github.com/google/go-cmp v0.5.9 // indirect
95
94
github.com/google/gofuzz v1.2.0 // indirect
96
95
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
96
+ github.com/googleapis/gnostic v0.5.5 // indirect
97
97
github.com/gorilla/mux v1.8.0 // indirect
98
98
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
99
99
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
@@ -107,6 +107,12 @@ require (
107
107
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
108
108
github.com/klauspost/compress v1.16.5 // indirect
109
109
github.com/mailru/easyjson v0.7.6 // indirect
110
+ github.com/jinzhu/gorm v1.9.11 // indirect
111
+ github.com/json-iterator/go v1.1.12 // indirect
112
+ github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
113
+ github.com/klauspost/compress v1.16.5 // indirect
114
+ github.com/kr/pretty v0.3.0 // indirect
115
+ github.com/magiconair/properties v1.8.6 // indirect
110
116
github.com/mattn/go-colorable v0.1.13 // indirect
111
117
github.com/mattn/go-isatty v0.0.17 // indirect
112
118
github.com/mattn/go-runewidth v0.0.14 // indirect
@@ -121,7 +127,6 @@ require (
121
127
github.com/moby/sys/symlink v0.2.0 // indirect
122
128
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
123
129
github.com/modern-go/reflect2 v1.0.2 // indirect
124
- github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
125
130
github.com/opencontainers/runc v1.1.7 // indirect
126
131
github.com/pelletier/go-toml v1.9.5 // indirect
127
132
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
@@ -140,6 +145,7 @@ require (
140
145
github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb // indirect
141
146
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect
142
147
github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 // indirect
148
+ github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
143
149
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
144
150
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
145
151
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
@@ -172,21 +178,19 @@ require (
172
178
k8s.io/apimachinery v0.26.2 // indirect
173
179
k8s.io/client-go v0.26.2 // indirect
174
180
k8s.io/klog/v2 v2.90.1 // indirect
175
- k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
176
181
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 // indirect
177
- sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
178
182
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
179
183
sigs.k8s.io/yaml v1.3.0 // indirect
180
184
)
181
185
182
- require github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5
183
-
184
- require github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
185
-
186
186
replace (
187
187
// Override for e2e tests
188
188
github.com/cucumber/godog => github.com/laurazard/godog v0.0.0-20220922095256-4c4b17abdae7
189
189
190
+ // v1.2.1-beta.2 is the latest version, override to use v1.1.0 to avoid beta
191
+ // https://github.com/vishvananda/netlink/compare/v1.1.0...v1.2.1-beta.2
192
+ github.com/vishvananda/netlink => github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5
193
+
190
194
golang.org/x/oauth2 => golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783
191
195
192
196
// For k8s dependencies, we use a replace directive, to prevent them being
0 commit comments