Skip to content

Commit 3d4db9c

Browse files
committed
add ovnk deps
1 parent 8efee4c commit 3d4db9c

File tree

475 files changed

+103069
-146
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

475 files changed

+103069
-146
lines changed

go.mod

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,32 @@ require (
88
github.com/gorilla/mux v1.8.1
99
github.com/json-iterator/go v1.1.12
1010
github.com/mitchellh/mapstructure v1.5.0
11+
github.com/ovn-org/ovn-kubernetes/go-controller v0.0.0-20240902083137-5d2310e77f87
1112
github.com/prometheus/client_golang v1.20.2
1213
github.com/prometheus/common v0.57.0
1314
github.com/sirupsen/logrus v1.9.3
1415
github.com/stretchr/testify v1.9.0
1516
gopkg.in/yaml.v3 v3.0.1
16-
k8s.io/api v0.31.0
17-
k8s.io/apimachinery v0.31.0
18-
k8s.io/client-go v0.31.0
17+
k8s.io/api v0.31.1
18+
k8s.io/apimachinery v0.31.1
19+
k8s.io/client-go v0.31.1
1920
)
2021

2122
require (
2223
github.com/beorn7/perks v1.0.1 // indirect
24+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
25+
github.com/cenkalti/hub v1.0.1 // indirect
26+
github.com/cenkalti/rpc2 v0.0.0-20210604223624-c1acbc6ec984 // indirect
2327
github.com/cespare/xxhash/v2 v2.3.0 // indirect
28+
github.com/containernetworking/cni v1.1.2 // indirect
29+
github.com/containernetworking/plugins v1.2.0 // indirect
30+
github.com/coreos/go-iptables v0.6.0 // indirect
31+
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
2432
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2533
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2634
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2735
github.com/go-logr/logr v1.4.2 // indirect
36+
github.com/go-logr/stdr v1.2.2 // indirect
2837
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2938
github.com/go-openapi/jsonreference v0.20.2 // indirect
3039
github.com/go-openapi/swag v0.22.4 // indirect
@@ -42,19 +51,29 @@ require (
4251
github.com/modern-go/reflect2 v1.0.2 // indirect
4352
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4453
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
54+
github.com/ovn-org/libovsdb v0.7.1-0.20240820095311-ce1951614a20 // indirect
4555
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4656
github.com/prometheus/client_model v0.6.1 // indirect
4757
github.com/prometheus/procfs v0.15.1 // indirect
58+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
59+
github.com/safchain/ethtool v0.3.1-0.20231027162144-83e5e0097c91 // indirect
4860
github.com/stretchr/objx v0.5.2 // indirect
61+
github.com/urfave/cli/v2 v2.27.2 // indirect
62+
github.com/vishvananda/netlink v1.2.1-beta.2.0.20231024175852-77df5d35f725 // indirect
63+
github.com/vishvananda/netns v0.0.4 // indirect
4964
github.com/x448/float16 v0.8.4 // indirect
65+
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
5066
golang.org/x/net v0.27.0 // indirect
5167
golang.org/x/oauth2 v0.21.0 // indirect
5268
golang.org/x/sys v0.22.0 // indirect
5369
golang.org/x/term v0.22.0 // indirect
5470
golang.org/x/text v0.16.0 // indirect
5571
golang.org/x/time v0.3.0 // indirect
5672
google.golang.org/protobuf v1.34.2 // indirect
73+
gopkg.in/gcfg.v1 v1.2.3 // indirect
5774
gopkg.in/inf.v0 v0.9.1 // indirect
75+
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
76+
gopkg.in/warnings.v0 v0.1.2 // indirect
5877
gopkg.in/yaml.v2 v2.4.0 // indirect
5978
k8s.io/klog/v2 v2.130.1 // indirect
6079
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
@@ -63,3 +82,5 @@ require (
6382
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
6483
sigs.k8s.io/yaml v1.4.0 // indirect
6584
)
85+
86+
replace github.com/ovn-org/ovn-kubernetes/go-controller => github.com/jotak/ovn-kubernetes/go-controller v0.0.0-20241113125023-088b4a3228a8

go.sum

Lines changed: 131 additions & 8 deletions
Large diffs are not rendered by default.

vendor/github.com/cenkalti/backoff/v4/.gitignore

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cenkalti/backoff/v4/LICENSE

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cenkalti/backoff/v4/README.md

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cenkalti/backoff/v4/backoff.go

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cenkalti/backoff/v4/context.go

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)