Skip to content

Commit

Permalink
Merge pull request #977 from jcmoraisjr/jm-sort-backends2
Browse files Browse the repository at this point in the history
Add sort-backends command line option
  • Loading branch information
aledbf authored Jul 16, 2017
2 parents 7c749ed + 8c3bb17 commit c43c3a9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
17 changes: 13 additions & 4 deletions core/pkg/ingress/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ type Configuration struct {
UpdateStatus bool
ElectionID string
UpdateStatusOnShutdown bool
SortBackends bool
}

// newIngressController creates an Ingress controller
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -886,15 +890,20 @@ 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
}
}

rand.Seed(time.Now().UnixNano())
for i := range upstreams {
j := rand.Intn(i + 1)
upstreams[i], upstreams[j] = upstreams[j], upstreams[i]
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
Expand Down
4 changes: 4 additions & 0 deletions core/pkg/ingress/controller/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -169,6 +172,7 @@ func NewIngressController(backend ingress.Controller) *GenericController {
Backend: backend,
ForceNamespaceIsolation: *forceIsolation,
UpdateStatusOnShutdown: *UpdateStatusOnShutdown,
SortBackends: *SortBackends,
}

ic := newIngressController(config)
Expand Down

0 comments on commit c43c3a9

Please sign in to comment.