Add sort-backends command line option

This commit is contained in:
Joao Morais 2017-07-12 21:35:36 -03:00
parent 7c749ede0a
commit 8c3bb17f56
2 changed files with 17 additions and 4 deletions

View file

@ -146,6 +146,7 @@ type Configuration struct {
UpdateStatus bool
ElectionID string
UpdateStatusOnShutdown bool
SortBackends bool
}
// newIngressController creates an Ingress controller
@ -737,6 +738,9 @@ func (ic *GenericController) getBackendServers() ([]*ingress.Backend, []*ingress
}
aUpstreams = append(aUpstreams, value)
}
if ic.cfg.SortBackends {
sort.Sort(ingress.BackendByNameServers(aUpstreams))
}
aServers := make([]*ingress.Server, 0, len(servers))
for _, value := range servers {
@ -886,16 +890,21 @@ func (ic *GenericController) serviceEndpoints(svcKey, backendPort string,
glog.Warningf("service %v does not have any active endpoints", svcKey)
}
if ic.cfg.SortBackends {
sort.Sort(ingress.EndpointByAddrPort(endps))
}
upstreams = append(upstreams, endps...)
break
}
}
if !ic.cfg.SortBackends {
rand.Seed(time.Now().UnixNano())
for i := range upstreams {
j := rand.Intn(i + 1)
upstreams[i], upstreams[j] = upstreams[j], upstreams[i]
}
}
return upstreams, nil
}

View file

@ -93,6 +93,9 @@ func NewIngressController(backend ingress.Controller) *GenericController {
UpdateStatusOnShutdown = flags.Bool("update-status-on-shutdown", true, `Indicates if the
ingress controller should update the Ingress status IP/hostname when the controller
is being stopped. Default is true`)
SortBackends = flags.Bool("sort-backends", false,
`Defines if backends and it's endpoints should be sorted`)
)
flags.AddGoFlagSet(flag.CommandLine)
@ -169,6 +172,7 @@ func NewIngressController(backend ingress.Controller) *GenericController {
Backend: backend,
ForceNamespaceIsolation: *forceIsolation,
UpdateStatusOnShutdown: *UpdateStatusOnShutdown,
SortBackends: *SortBackends,
}
ic := newIngressController(config)