-
Notifications
You must be signed in to change notification settings - Fork 680
/
gateway.go
500 lines (410 loc) · 18 KB
/
gateway.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
// Copyright Project Contour Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package controller
import (
"context"
"fmt"
contour_api_v1 "github.com/projectcontour/contour/apis/projectcontour/v1"
contour_api_v1alpha1 "github.com/projectcontour/contour/apis/projectcontour/v1alpha1"
"github.com/projectcontour/contour/internal/gatewayapi"
"github.com/projectcontour/contour/internal/provisioner/model"
"github.com/projectcontour/contour/internal/provisioner/objects/contourconfig"
"github.com/projectcontour/contour/internal/provisioner/objects/dataplane"
"github.com/projectcontour/contour/internal/provisioner/objects/deployment"
"github.com/projectcontour/contour/internal/provisioner/objects/rbac"
"github.com/projectcontour/contour/internal/provisioner/objects/secret"
"github.com/projectcontour/contour/internal/provisioner/objects/service"
retryable "github.com/projectcontour/contour/internal/provisioner/retryableerror"
"github.com/go-logr/logr"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
utilerrors "k8s.io/apimachinery/pkg/util/errors"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
gatewayapi_v1 "sigs.k8s.io/gateway-api/apis/v1"
gatewayapi_v1beta1 "sigs.k8s.io/gateway-api/apis/v1beta1"
)
// gatewayReconciler reconciles Gateway objects.
type gatewayReconciler struct {
gatewayController gatewayapi_v1beta1.GatewayController
contourImage string
envoyImage string
client client.Client
log logr.Logger
}
func NewGatewayController(mgr manager.Manager, gatewayController, contourImage, envoyImage string) (controller.Controller, error) {
r := &gatewayReconciler{
gatewayController: gatewayapi_v1beta1.GatewayController(gatewayController),
contourImage: contourImage,
envoyImage: envoyImage,
client: mgr.GetClient(),
log: ctrl.Log.WithName("gateway-controller"),
}
c, err := controller.New("gateway-controller", mgr, controller.Options{Reconciler: r})
if err != nil {
return nil, err
}
if err := c.Watch(
source.Kind(mgr.GetCache(), &gatewayapi_v1beta1.Gateway{}),
&handler.EnqueueRequestForObject{},
predicate.NewPredicateFuncs(r.forReconcilableGatewayClass),
); err != nil {
return nil, err
}
// Watch GatewayClasses so we can trigger reconciles for any related
// Gateways when a provisioner-controlled GatewayClass becomes
// "Accepted: true".
if err := c.Watch(
source.Kind(mgr.GetCache(), &gatewayapi_v1beta1.GatewayClass{}),
handler.EnqueueRequestsFromMapFunc(r.getGatewayClassGateways),
predicate.NewPredicateFuncs(r.isGatewayClassReconcilable),
); err != nil {
return nil, err
}
return c, nil
}
// forReconcilableGatewayClass returns true if the provided Gateway uses a GatewayClass
// controlled by the provisioner, and that GatewayClass has a condition of
// "Accepted: true".
func (r *gatewayReconciler) forReconcilableGatewayClass(obj client.Object) bool {
gw, ok := obj.(*gatewayapi_v1beta1.Gateway)
if !ok {
return false
}
gatewayClass := &gatewayapi_v1beta1.GatewayClass{}
if err := r.client.Get(context.Background(), client.ObjectKey{Name: string(gw.Spec.GatewayClassName)}, gatewayClass); err != nil {
return false
}
return r.isGatewayClassReconcilable(gatewayClass)
}
// isGatewayClassReconcilable returns true if the provided object is a
// GatewayClass controlled by the provisioner that has an "Accepted: true"
// condition.
func (r *gatewayReconciler) isGatewayClassReconcilable(obj client.Object) bool {
gatewayClass, ok := obj.(*gatewayapi_v1beta1.GatewayClass)
if !ok {
return false
}
if gatewayClass.Spec.ControllerName != r.gatewayController {
return false
}
var accepted bool
for _, cond := range gatewayClass.Status.Conditions {
if cond.Type == string(gatewayapi_v1.GatewayClassConditionStatusAccepted) {
if cond.Status == metav1.ConditionTrue {
accepted = true
}
break
}
}
return accepted
}
func (r *gatewayReconciler) getGatewayClassGateways(ctx context.Context, gatewayClass client.Object) []reconcile.Request {
var gateways gatewayapi_v1beta1.GatewayList
if err := r.client.List(ctx, &gateways); err != nil {
r.log.Error(err, "error listing gateways")
return nil
}
var reconciles []reconcile.Request
for _, gw := range gateways.Items {
if gw.Spec.GatewayClassName == gatewayapi_v1beta1.ObjectName(gatewayClass.GetName()) {
reconciles = append(reconciles, reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: gw.Namespace,
Name: gw.Name,
},
})
}
}
return reconciles
}
func (r *gatewayReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
log := r.log.WithValues("gateway-namespace", req.Namespace, "gateway-name", req.Name)
gateway := &gatewayapi_v1beta1.Gateway{}
if err := r.client.Get(ctx, req.NamespacedName, gateway); err != nil {
if errors.IsNotFound(err) {
log.Info("deleting gateway resources")
contour := &model.Contour{
ObjectMeta: metav1.ObjectMeta{
Namespace: req.Namespace,
Name: req.Name,
},
}
if errs := r.ensureContourDeleted(ctx, contour, log); len(errs) > 0 {
log.Error(utilerrors.NewAggregate(errs), "failed to delete resources for gateway")
}
return ctrl.Result{}, nil
}
// Error reading the object, so requeue the request.
return ctrl.Result{}, fmt.Errorf("failed to get gateway %s: %w", req, err)
}
// Theoretically all event sources should be filtered already, but doesn't hurt
// to double-check this here to ensure we only reconcile gateways for accepted
// gateway classes the provisioner controls.
gatewayClass := &gatewayapi_v1beta1.GatewayClass{}
if err := r.client.Get(ctx, client.ObjectKey{Name: string(gateway.Spec.GatewayClassName)}, gatewayClass); err != nil {
return ctrl.Result{}, fmt.Errorf("error getting gateway's gateway class: %w", err)
}
if !r.isGatewayClassReconcilable(gatewayClass) {
return ctrl.Result{}, nil
}
log.Info("ensuring gateway resources")
contourModel := model.Default(gateway.Namespace, gateway.Name)
// Currently, only a single address of type IPAddress or Hostname
// is supported; anything else will be ignored.
if len(gateway.Spec.Addresses) > 0 {
address := gateway.Spec.Addresses[0]
if address.Type == nil ||
*address.Type == gatewayapi_v1beta1.IPAddressType ||
*address.Type == gatewayapi_v1beta1.HostnameAddressType {
contourModel.Spec.NetworkPublishing.Envoy.LoadBalancer.LoadBalancerIP = address.Value
}
}
// Validate listener ports and hostnames to get
// the ports to program.
for _, listenerPort := range gatewayapi.ValidateListeners(gateway.Spec.Listeners).Ports {
contourModel.Spec.NetworkPublishing.Envoy.Ports = append(contourModel.Spec.NetworkPublishing.Envoy.Ports, model.Port{
Name: listenerPort.Name,
ServicePort: listenerPort.Port,
ContainerPort: listenerPort.ContainerPort,
})
}
gatewayClassParams, err := r.getGatewayClassParams(ctx, gatewayClass)
if err != nil {
return ctrl.Result{}, fmt.Errorf("error getting gateway's gateway class parameters: %w", err)
}
if gatewayClassParams != nil {
contourModel.Spec.RuntimeSettings = gatewayClassParams.Spec.RuntimeSettings
// if there is a same name pair, overwrite it
// nolint:staticcheck
for k, v := range gatewayClassParams.Spec.ResourceLabels {
contourModel.Spec.ResourceLabels[k] = v
}
if gatewayClassParams.Spec.Contour != nil {
contourParams := gatewayClassParams.Spec.Contour
if contourParams.Replicas > 0 { // nolint:staticcheck
contourModel.Spec.ContourReplicas = contourParams.Replicas // nolint:staticcheck
}
// Deployment replicas
if contourParams.Deployment != nil && contourParams.Deployment.Replicas > 0 {
contourModel.Spec.ContourReplicas = contourParams.Deployment.Replicas
}
// Node placement
if nodePlacement := contourParams.NodePlacement; nodePlacement != nil {
if contourModel.Spec.NodePlacement == nil {
contourModel.Spec.NodePlacement = &model.NodePlacement{}
}
contourModel.Spec.NodePlacement.Contour = &model.ContourNodePlacement{
NodeSelector: nodePlacement.NodeSelector,
Tolerations: nodePlacement.Tolerations,
}
}
contourModel.Spec.ContourResources = contourParams.Resources
contourModel.Spec.ContourLogLevel = contourParams.LogLevel
contourModel.Spec.KubernetesLogLevel = contourParams.KubernetesLogLevel
contourModel.Spec.WatchNamespaces = contour_api_v1.NamespacesToStrings(contourParams.WatchNamespaces)
if contourParams.Deployment != nil &&
contourParams.Deployment.Strategy != nil {
contourModel.Spec.ContourDeploymentStrategy = *contourParams.Deployment.Strategy
}
for k, v := range contourParams.PodAnnotations {
contourModel.Spec.ContourPodAnnotations[k] = v
}
}
if gatewayClassParams.Spec.Envoy != nil {
envoyParams := gatewayClassParams.Spec.Envoy
// Workload type
// Note, the values have already been validated by the gatewayclass controller
// so just check for the existence of a value here.
if envoyParams.WorkloadType != "" {
contourModel.Spec.EnvoyWorkloadType = envoyParams.WorkloadType
}
// Deployment replicas
if envoyParams.WorkloadType == contour_api_v1alpha1.WorkloadTypeDeployment {
if envoyParams.Replicas > 0 { // nolint:staticcheck
contourModel.Spec.EnvoyReplicas = envoyParams.Replicas // nolint:staticcheck
}
if envoyParams.Deployment != nil && envoyParams.Deployment.Replicas > 0 {
contourModel.Spec.EnvoyReplicas = envoyParams.Deployment.Replicas
}
}
// Network publishing
if networkPublishing := envoyParams.NetworkPublishing; networkPublishing != nil {
// Note, the values have already been validated by the gatewayclass controller
// so just check for the existence of a value here.
if networkPublishing.Type != "" {
contourModel.Spec.NetworkPublishing.Envoy.Type = networkPublishing.Type
}
if networkPublishing.Type == contour_api_v1alpha1.NodePortServicePublishingType {
// when the NetworkPublishingType is 'NodePortServicePublishingType',
// the gateway.Spec.Listeners' port will be used to set 'NodePort' in addition to 'ServicePort'
for i := range contourModel.Spec.NetworkPublishing.Envoy.Ports {
port := &contourModel.Spec.NetworkPublishing.Envoy.Ports[i]
port.NodePort = port.ServicePort
}
}
if networkPublishing.ExternalTrafficPolicy != "" {
contourModel.Spec.NetworkPublishing.Envoy.ExternalTrafficPolicy = networkPublishing.ExternalTrafficPolicy
}
if networkPublishing.IPFamilyPolicy != "" {
contourModel.Spec.NetworkPublishing.Envoy.IPFamilyPolicy = networkPublishing.IPFamilyPolicy
}
contourModel.Spec.NetworkPublishing.Envoy.ServiceAnnotations = networkPublishing.ServiceAnnotations
}
// Node placement
if nodePlacement := envoyParams.NodePlacement; nodePlacement != nil {
if contourModel.Spec.NodePlacement == nil {
contourModel.Spec.NodePlacement = &model.NodePlacement{}
}
contourModel.Spec.NodePlacement.Envoy = &model.EnvoyNodePlacement{
NodeSelector: nodePlacement.NodeSelector,
Tolerations: nodePlacement.Tolerations,
}
}
// volume mount
contourModel.Spec.EnvoyExtraVolumeMounts = append(contourModel.Spec.EnvoyExtraVolumeMounts, envoyParams.ExtraVolumeMounts...)
contourModel.Spec.EnvoyExtraVolumes = append(contourModel.Spec.EnvoyExtraVolumes, envoyParams.ExtraVolumes...)
// Pod Annotations
for k, v := range envoyParams.PodAnnotations {
contourModel.Spec.EnvoyPodAnnotations[k] = v
}
contourModel.Spec.EnvoyResources = envoyParams.Resources
if envoyParams.LogLevel != "" {
contourModel.Spec.EnvoyLogLevel = envoyParams.LogLevel
}
if envoyParams.WorkloadType == contour_api_v1alpha1.WorkloadTypeDeployment &&
envoyParams.Deployment != nil &&
envoyParams.Deployment.Strategy != nil {
contourModel.Spec.EnvoyDeploymentStrategy = *envoyParams.Deployment.Strategy
}
if envoyParams.WorkloadType == contour_api_v1alpha1.WorkloadTypeDaemonSet &&
envoyParams.DaemonSet != nil &&
envoyParams.DaemonSet.UpdateStrategy != nil {
contourModel.Spec.EnvoyDaemonSetUpdateStrategy = *envoyParams.DaemonSet.UpdateStrategy
}
if envoyParams.BaseID > 0 {
contourModel.Spec.EnvoyBaseID = envoyParams.BaseID
}
if envoyParams.OverloadMaxHeapSize > 0 {
contourModel.Spec.EnvoyMaxHeapSizeBytes = envoyParams.OverloadMaxHeapSize
}
}
}
if gateway.Spec.Infrastructure != nil {
for k, v := range gateway.Spec.Infrastructure.Labels {
contourModel.Spec.ResourceLabels[string(k)] = string(v)
}
for k, v := range gateway.Spec.Infrastructure.Annotations {
contourModel.Spec.ResourceAnnotations[string(k)] = string(v)
}
}
if errs := r.ensureContour(ctx, contourModel, log); len(errs) > 0 {
return ctrl.Result{}, fmt.Errorf("failed to ensure resources for gateway: %w", retryable.NewMaybeRetryableAggregate(errs))
}
var newConds []metav1.Condition
for _, cond := range gateway.Status.Conditions {
if cond.Type == string(gatewayapi_v1.GatewayConditionAccepted) {
if cond.Status == metav1.ConditionTrue {
return ctrl.Result{}, nil
}
continue
}
newConds = append(newConds, cond)
}
log.Info("setting gateway's Accepted condition to true")
// nolint:gocritic
gateway.Status.Conditions = append(newConds, metav1.Condition{
Type: string(gatewayapi_v1.GatewayConditionAccepted),
Status: metav1.ConditionTrue,
ObservedGeneration: gateway.Generation,
LastTransitionTime: metav1.Now(),
Reason: string(gatewayapi_v1.GatewayReasonAccepted),
Message: "Gateway is accepted",
})
if err := r.client.Status().Update(ctx, gateway); err != nil {
return ctrl.Result{}, fmt.Errorf("failed to set gateway %s Accepted condition: %w", req, err)
}
return ctrl.Result{}, nil
}
func (r *gatewayReconciler) ensureContour(ctx context.Context, contour *model.Contour, log logr.Logger) []error {
var errs []error
handleResult := func(resource string, err error) {
if err != nil {
errs = append(errs, fmt.Errorf("failed to ensure %s for gateway %s/%s: %w", resource, contour.Namespace, contour.Name, err))
} else {
log.Info(fmt.Sprintf("ensured %s for gateway", resource))
}
}
handleResult("rbac", rbac.EnsureRBAC(ctx, r.client, contour))
if len(errs) > 0 {
return errs
}
handleResult("contour config", contourconfig.EnsureContourConfig(ctx, r.client, contour))
handleResult("xDS TLS secrets", secret.EnsureXDSSecrets(ctx, r.client, contour, r.contourImage))
handleResult("deployment", deployment.EnsureDeployment(ctx, r.client, contour, r.contourImage))
handleResult("envoy data plane", dataplane.EnsureDataPlane(ctx, r.client, contour, r.contourImage, r.envoyImage))
handleResult("contour service", service.EnsureContourService(ctx, r.client, contour))
switch contour.Spec.NetworkPublishing.Envoy.Type {
case model.LoadBalancerServicePublishingType, model.NodePortServicePublishingType, model.ClusterIPServicePublishingType:
handleResult("envoy service", service.EnsureEnvoyService(ctx, r.client, contour))
}
return errs
}
func (r *gatewayReconciler) ensureContourDeleted(ctx context.Context, contour *model.Contour, log logr.Logger) []error {
var errs []error
handleResult := func(resource string, err error) {
if err != nil {
errs = append(errs, fmt.Errorf("failed to delete %s for gateway %s/%s: %w", resource, contour.Namespace, contour.Name, err))
} else {
log.Info(fmt.Sprintf("deleted %s for gateway", resource))
}
}
handleResult("envoy service", service.EnsureEnvoyServiceDeleted(ctx, r.client, contour))
handleResult("service", service.EnsureContourServiceDeleted(ctx, r.client, contour))
handleResult("envoy data plane", dataplane.EnsureDataPlaneDeleted(ctx, r.client, contour))
handleResult("deployment", deployment.EnsureDeploymentDeleted(ctx, r.client, contour))
handleResult("xDS TLS Secrets", secret.EnsureXDSSecretsDeleted(ctx, r.client, contour))
handleResult("contour config", contourconfig.EnsureContourConfigDeleted(ctx, r.client, contour))
handleResult("rbac", rbac.EnsureRBACDeleted(ctx, r.client, contour))
return errs
}
func (r *gatewayReconciler) getGatewayClassParams(ctx context.Context, gatewayClass *gatewayapi_v1beta1.GatewayClass) (*contour_api_v1alpha1.ContourDeployment, error) {
// Check if there is a parametersRef to ContourDeployment with
// a namespace specified. Theoretically, we should only be reconciling
// Gateways for GatewayClasses that have valid parameter refs (or no refs),
// making this check mostly redundant other than checking for a nil params
// ref, but there is potentially a race condition where a GatewayClass's
// parameters ref is updated from valid to invalid, and then a Gateway reconcile
// is triggered before the GatewayClass's status is updated, that
// would lead to this code being executed for a GatewayClass with an
// invalid parametersRef.
if !isContourDeploymentRef(gatewayClass.Spec.ParametersRef) {
return nil, nil
}
gcParams := &contour_api_v1alpha1.ContourDeployment{}
key := client.ObjectKey{
Namespace: string(*gatewayClass.Spec.ParametersRef.Namespace),
Name: gatewayClass.Spec.ParametersRef.Name,
}
if err := r.client.Get(ctx, key, gcParams); err != nil {
return nil, fmt.Errorf("error getting gateway class's parameters: %w", err)
}
return gcParams, nil
}