mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e26e1cc5c1
- vishvananda/netlink: https://github.com/vishvananda/netlink/compare/v1.0.0...v1.1.0 - vishvananda/netns:7109fa855b...0a2b9b5464
- libnetwork:bf2bd42abc...beab24292c
- github.com/moby/ipvs: new dependency (was previously part of libnetwork) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
34 lines
1,011 B
Markdown
34 lines
1,011 B
Markdown
# ipvs - networking for containers
|
|
|
|
![Test](https://github.com/moby/ipvs/workflows/Test/badge.svg) [![GoDoc](https://godoc.org/github.com/moby/ipvs?status.svg)](https://godoc.org/github.com/moby/ipvs) [![Go Report Card](https://goreportcard.com/badge/github.com/moby/ipvs)](https://goreportcard.com/report/github.com/moby/ipvs)
|
|
|
|
ipvs provides a native Go implementation for communicating with IPVS kernel module using a netlink socket.
|
|
|
|
|
|
#### Using ipvs
|
|
|
|
```go
|
|
import (
|
|
"log"
|
|
|
|
"github.com/moby/ipvs"
|
|
)
|
|
|
|
func main() {
|
|
handle, err := ipvs.New("")
|
|
if err != nil {
|
|
log.Fatalf("ipvs.New: %s", err)
|
|
}
|
|
svcs, err := handle.GetServices()
|
|
if err != nil {
|
|
log.Fatalf("handle.GetServices: %s", err)
|
|
}
|
|
}
|
|
```
|
|
|
|
## Contributing
|
|
|
|
Want to hack on ipvs? [Docker's contributions guidelines](https://github.com/docker/docker/blob/master/CONTRIBUTING.md) apply.
|
|
|
|
## Copyright and license
|
|
Code and documentation copyright 2015 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.
|