mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0f89c9b7bc
Ingress load balancer is achieved via a service sandbox which acts as the proxy to translate incoming node port requests and mapping that to a service entry. Once the right service is identified, the same internal loadbalancer implementation is used to load balance to the right backend instance. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
39 lines
762 B
Go
39 lines
762 B
Go
package libnetwork
|
|
|
|
import (
|
|
"net"
|
|
"sync"
|
|
)
|
|
|
|
var (
|
|
// A global monotonic counter to assign firewall marks to
|
|
// services.
|
|
fwMarkCtr uint32 = 256
|
|
fwMarkCtrMu sync.Mutex
|
|
)
|
|
|
|
type service struct {
|
|
name string // Service Name
|
|
id string // Service ID
|
|
|
|
// Map of loadbalancers for the service one-per attached
|
|
// network. It is keyed with network ID.
|
|
loadBalancers map[string]*loadBalancer
|
|
|
|
// List of ingress ports exposed by the service
|
|
ingressPorts []*PortConfig
|
|
|
|
sync.Mutex
|
|
}
|
|
|
|
type loadBalancer struct {
|
|
vip net.IP
|
|
fwMark uint32
|
|
|
|
// Map of backend IPs backing this loadbalancer on this
|
|
// network. It is keyed with endpoint ID.
|
|
backEnds map[string]net.IP
|
|
|
|
// Back pointer to service to which the loadbalancer belongs.
|
|
service *service
|
|
}
|