mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

The ipvs package was moved to a separate repo. The ipvs package is a fairly generic set of helpers for managing IPVS. The ipvs package is used by docker swarm and kubernetes. Because we want to merge libnetwork back into the moby/moby codebase while also not creating more dependencies for other projects on moby/moby itself, it was decided that the best path for ipvs is to live on it's own since there are no other ties to libnetwork. Ref: https://github.com/moby/libnetwork/issues/2522 Signed-off-by: Brian Goff <cpuguy83@gmail.com>
12 lines
335 B
Modula-2
12 lines
335 B
Modula-2
module github.com/moby/ipvs
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/pkg/errors v0.8.1 // indirect
|
|
github.com/sirupsen/logrus v1.4.1
|
|
github.com/vishvananda/netlink v1.0.0
|
|
github.com/vishvananda/netns v0.0.0-20190625233234-7109fa855b0f
|
|
golang.org/x/sys v0.0.0-20190303122642-d455e41777fc
|
|
gotest.tools v1.4.1-0.20181223230014-1083505acf35
|
|
)
|