forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.go
290 lines (250 loc) · 9.46 KB
/
plugin.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package templaterouter
import (
"crypto/md5"
"fmt"
"path/filepath"
"strconv"
"text/template"
"time"
"github.com/golang/glog"
ktypes "k8s.io/apimachinery/pkg/types"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/watch"
kapi "k8s.io/kubernetes/pkg/api"
routeapi "github.com/openshift/origin/pkg/route/apis/route"
unidlingapi "github.com/openshift/origin/pkg/unidling/api"
)
// TemplatePlugin implements the router.Plugin interface to provide
// a template based, backend-agnostic router.
type TemplatePlugin struct {
Router routerInterface
IncludeUDP bool
ServiceFetcher ServiceLookup
}
func newDefaultTemplatePlugin(router routerInterface, includeUDP bool, lookupSvc ServiceLookup) *TemplatePlugin {
return &TemplatePlugin{
Router: router,
IncludeUDP: includeUDP,
ServiceFetcher: lookupSvc,
}
}
type TemplatePluginConfig struct {
WorkingDir string
TemplatePath string
ReloadScriptPath string
ReloadInterval time.Duration
ReloadCallbacks []func()
DefaultCertificate string
DefaultCertificatePath string
DefaultCertificateDir string
DefaultDestinationCAPath string
StatsPort int
StatsUsername string
StatsPassword string
IncludeUDP bool
AllowWildcardRoutes bool
PeerService *ktypes.NamespacedName
BindPortsAfterSync bool
MaxConnections string
Ciphers string
StrictSNI bool
}
// routerInterface controls the interaction of the plugin with the underlying router implementation
type routerInterface interface {
// Mutative operations in this interface do not return errors.
// The only error state for these methods is when an unknown
// frontend key is used; all call sites make certain the frontend
// is created.
// SyncedAtLeastOnce indicates an initial sync has been performed
SyncedAtLeastOnce() bool
// CreateServiceUnit creates a new service named with the given id.
CreateServiceUnit(id string)
// FindServiceUnit finds the service with the given id.
FindServiceUnit(id string) (v ServiceUnit, ok bool)
// AddEndpoints adds new Endpoints for the given id.
AddEndpoints(id string, endpoints []Endpoint)
// DeleteEndpoints deletes the endpoints for the frontend with the given id.
DeleteEndpoints(id string)
// AddRoute attempts to add a route to the router.
AddRoute(route *routeapi.Route)
// RemoveRoute removes the given route
RemoveRoute(route *routeapi.Route)
// HasRoute indicates whether the router is configured with the given route
HasRoute(route *routeapi.Route) bool
// Reduce the list of routes to only these namespaces
FilterNamespaces(namespaces sets.String)
// Commit applies the changes in the background. It kicks off a rate-limited
// commit (persist router state + refresh the backend) that coalesces multiple changes.
Commit()
}
// NewTemplatePlugin creates a new TemplatePlugin.
func NewTemplatePlugin(cfg TemplatePluginConfig, lookupSvc ServiceLookup) (*TemplatePlugin, error) {
templateBaseName := filepath.Base(cfg.TemplatePath)
masterTemplate, err := template.New("config").Funcs(helperFunctions).ParseFiles(cfg.TemplatePath)
if err != nil {
return nil, err
}
templates := map[string]*template.Template{}
for _, template := range masterTemplate.Templates() {
if template.Name() == templateBaseName {
continue
}
templates[template.Name()] = template
}
peerKey := ""
if cfg.PeerService != nil {
peerKey = peerEndpointsKey(*cfg.PeerService)
}
templateRouterCfg := templateRouterCfg{
dir: cfg.WorkingDir,
templates: templates,
reloadScriptPath: cfg.ReloadScriptPath,
reloadInterval: cfg.ReloadInterval,
reloadCallbacks: cfg.ReloadCallbacks,
defaultCertificate: cfg.DefaultCertificate,
defaultCertificatePath: cfg.DefaultCertificatePath,
defaultCertificateDir: cfg.DefaultCertificateDir,
defaultDestinationCAPath: cfg.DefaultDestinationCAPath,
statsUser: cfg.StatsUsername,
statsPassword: cfg.StatsPassword,
statsPort: cfg.StatsPort,
allowWildcardRoutes: cfg.AllowWildcardRoutes,
peerEndpointsKey: peerKey,
bindPortsAfterSync: cfg.BindPortsAfterSync,
}
router, err := newTemplateRouter(templateRouterCfg)
return newDefaultTemplatePlugin(router, cfg.IncludeUDP, lookupSvc), err
}
// HandleEndpoints processes watch events on the Endpoints resource.
func (p *TemplatePlugin) HandleEndpoints(eventType watch.EventType, endpoints *kapi.Endpoints) error {
key := endpointsKey(endpoints)
glog.V(4).Infof("Processing %d Endpoints for Name: %v (%v)", len(endpoints.Subsets), endpoints.Name, eventType)
for i, s := range endpoints.Subsets {
glog.V(4).Infof(" Subset %d : %#v", i, s)
}
if _, ok := p.Router.FindServiceUnit(key); !ok {
p.Router.CreateServiceUnit(key)
}
switch eventType {
case watch.Added, watch.Modified:
glog.V(4).Infof("Modifying endpoints for %s", key)
routerEndpoints := createRouterEndpoints(endpoints, !p.IncludeUDP, p.ServiceFetcher)
key := endpointsKey(endpoints)
p.Router.AddEndpoints(key, routerEndpoints)
case watch.Deleted:
glog.V(4).Infof("Deleting endpoints for %s", key)
p.Router.DeleteEndpoints(key)
}
return nil
}
// HandleNode processes watch events on the Node resource
// The template type of plugin currently does not need to act on such events
// so the implementation just returns without error
func (p *TemplatePlugin) HandleNode(eventType watch.EventType, node *kapi.Node) error {
return nil
}
// HandleRoute processes watch events on the Route resource.
// TODO: this function can probably be collapsed with the router itself, as a function that
// determines which component needs to be recalculated (which template) and then does so
// on demand.
func (p *TemplatePlugin) HandleRoute(eventType watch.EventType, route *routeapi.Route) error {
switch eventType {
case watch.Added, watch.Modified:
p.Router.AddRoute(route)
case watch.Deleted:
glog.V(4).Infof("Deleting route %s/%s", route.Namespace, route.Name)
p.Router.RemoveRoute(route)
}
return nil
}
// HandleNamespaces limits the scope of valid routes to only those that match
// the provided namespace list.
func (p *TemplatePlugin) HandleNamespaces(namespaces sets.String) error {
p.Router.FilterNamespaces(namespaces)
return nil
}
func (p *TemplatePlugin) Commit() error {
p.Router.Commit()
return nil
}
// endpointsKey returns the internal router key to use for the given Endpoints.
func endpointsKey(endpoints *kapi.Endpoints) string {
return fmt.Sprintf("%s/%s", endpoints.Namespace, endpoints.Name)
}
// peerServiceKey may be used by the underlying router when handling endpoints to identify
// endpoints that belong to its peers. THIS MUST FOLLOW THE KEY STRATEGY OF endpointsKey. It
// receives a NamespacedName that is created from the service that is added by the oadm command
func peerEndpointsKey(namespacedName ktypes.NamespacedName) string {
return fmt.Sprintf("%s/%s", namespacedName.Namespace, namespacedName.Name)
}
// createRouterEndpoints creates openshift router endpoints based on k8s endpoints
func createRouterEndpoints(endpoints *kapi.Endpoints, excludeUDP bool, lookupSvc ServiceLookup) []Endpoint {
// check if this service is currently idled
wasIdled := false
subsets := endpoints.Subsets
if _, ok := endpoints.Annotations[unidlingapi.IdledAtAnnotation]; ok && len(endpoints.Subsets) == 0 {
service, err := lookupSvc.LookupService(endpoints)
if err != nil {
utilruntime.HandleError(fmt.Errorf("unable to find idled service corresponding to idled endpoints %s/%s: %v", endpoints.Namespace, endpoints.Name, err))
return []Endpoint{}
}
if service.Spec.ClusterIP == "" {
utilruntime.HandleError(fmt.Errorf("headless service %s/%s was marked as idled, but cannot setup unidling without a cluster IP", endpoints.Namespace, endpoints.Name))
return []Endpoint{}
}
svcSubset := kapi.EndpointSubset{
Addresses: []kapi.EndpointAddress{
{
IP: service.Spec.ClusterIP,
},
},
}
for _, port := range service.Spec.Ports {
endptPort := kapi.EndpointPort{
Name: port.Name,
Port: port.Port,
Protocol: port.Protocol,
}
svcSubset.Ports = append(svcSubset.Ports, endptPort)
}
subsets = []kapi.EndpointSubset{svcSubset}
wasIdled = true
}
out := make([]Endpoint, 0, len(endpoints.Subsets)*4)
// TODO: review me for sanity
for _, s := range subsets {
for _, p := range s.Ports {
if excludeUDP && p.Protocol == kapi.ProtocolUDP {
continue
}
for _, a := range s.Addresses {
ep := Endpoint{
IP: a.IP,
Port: strconv.Itoa(int(p.Port)),
PortName: p.Name,
NoHealthCheck: wasIdled,
}
if a.TargetRef != nil {
ep.TargetName = a.TargetRef.Name
if a.TargetRef.Kind == "Pod" {
ep.ID = fmt.Sprintf("pod:%s:%s:%s:%d", ep.TargetName, endpoints.Name, a.IP, p.Port)
} else {
ep.ID = fmt.Sprintf("ept:%s:%s:%d", endpoints.Name, a.IP, p.Port)
}
} else {
ep.TargetName = ep.IP
ep.ID = fmt.Sprintf("ept:%s:%s:%d", endpoints.Name, a.IP, p.Port)
}
// IdHash contains an obfuscated internal IP address
// that is the value passed in the cookie. The IP address
// is made more difficult to extract by including other
// internal information in the hash.
s := ep.ID
ep.IdHash = fmt.Sprintf("%x", md5.Sum([]byte(s)))
out = append(out, ep)
}
}
}
return out
}