ipvs
ipvs copied to clipboard
IPVS networking for containers (package derived from moby/libnetwork)
I use you example, slightly modified; ```go package main import ( "log" "github.com/moby/ipvs" ) func main() { handle, err := ipvs.New("") if err != nil { log.Fatalf("ipvs.New: %s", err) }...
The NewInNamespace function allows initializing an IPVS handle using an already initialized netns.Handle.
fetch ipvs info with API `info := i.GetInfo()` fetch version number just call `info.Version.String()`, example: 1.2.1 fetch connection table size call `info.ConnTableSize`, example: 4096 .
A lot of Kubernetes users (using IPVS proxy) run on CentOS 7 which is based on Linux 3.10. In the past there have been compatibility issues with older kernel where...
Add `PersistentConnections` attribute in `Destination` struct
hi: Recently, it was found that the CPU usage of kube-proxy is high in ipvs mode, and the method of doCmdWithRespone found to be ipvs through pprof has a large...