forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.go
46 lines (33 loc) · 1.25 KB
/
controller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package allocation
import (
"github.com/golang/glog"
"github.com/openshift/origin/pkg/route"
routeapi "github.com/openshift/origin/pkg/route/api"
)
// RouteAllocationController abstracts the details of how routes are
// allocated to router shards.
type RouteAllocationController struct {
Plugin route.AllocationPlugin
}
// Allocate a router shard for the given route.
func (c *RouteAllocationController) AllocateRouterShard(route *routeapi.Route) (*routeapi.RouterShard, error) {
glog.V(4).Infof("Allocating router shard for Route: %s [alias=%s]",
route.ServiceName, route.Host)
shard, err := c.Plugin.Allocate(route)
if err != nil {
glog.Errorf("unable to allocate router shard: %v", err)
return shard, err
}
glog.V(4).Infof("Route %s allocated to shard %s [suffix=%s]",
route.ServiceName, shard.ShardName, shard.DNSSuffix)
return shard, err
}
// Generate a host name for the given route and router shard combination.
func (c *RouteAllocationController) GenerateHostname(route *routeapi.Route, shard *routeapi.RouterShard) string {
glog.V(4).Infof("Generating host name for Route: %s",
route.ServiceName)
s := c.Plugin.GenerateHostname(route, shard)
glog.V(4).Infof("Route: %s, generated host name/alias=%s",
route.ServiceName, s)
return s
}