-
Notifications
You must be signed in to change notification settings - Fork 67
/
mutator.go
87 lines (77 loc) · 2.93 KB
/
mutator.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
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
//
// 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 m 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 shoot
import (
"context"
"fmt"
"github.com/gardener/gardener-extension-provider-alicloud/pkg/apis/config"
webhookutils "github.com/gardener/gardener-extension-provider-alicloud/pkg/webhook/utils"
extensionswebhook "github.com/gardener/gardener/extensions/pkg/webhook"
"github.com/go-logr/logr"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/meta"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/log"
)
type mutator struct {
logger logr.Logger
service *config.Service
}
// NewMutator creates a new Mutator that mutates resources in the shoot cluster.
func NewMutator(service *config.Service) extensionswebhook.Mutator {
return &mutator{
logger: log.Log.WithName("shoot-mutator"),
service: service,
}
}
// Mutate mutates resources.
func (m *mutator) Mutate(ctx context.Context, new, old client.Object) error {
acc, err := meta.Accessor(new)
if err != nil {
return fmt.Errorf("could not create accessor during webhook: %w", err)
}
// If the object does have a deletion timestamp then we don't want to mutate anything.
if acc.GetDeletionTimestamp() != nil {
return nil
}
switch x := new.(type) {
case *corev1.Service:
if x.Name == "vpn-shoot" || x.Name == "addons-nginx-ingress-controller" {
var oldSvc *corev1.Service
if old != nil {
var ok bool
oldSvc, ok = old.(*corev1.Service)
if !ok {
return fmt.Errorf("could not cast old object to corev1.Service: %w", err)
}
}
extensionswebhook.LogMutation(logger, x.Kind, x.Namespace, x.Name)
webhookutils.MutateAnnotation(x, oldSvc, m.service.BackendLoadBalancerSpec)
webhookutils.MutateExternalTrafficPolicy(x, oldSvc)
}
case *appsv1.Deployment:
if x.Name == "metrics-server" {
extensionswebhook.LogMutation(logger, x.Kind, x.Namespace, x.Name)
m.mutateMetricsServerDeployment(ctx, x)
}
}
return nil
}
func (m *mutator) mutateMetricsServerDeployment(ctx context.Context, dep *appsv1.Deployment) {
ps := &dep.Spec.Template.Spec
if c := extensionswebhook.ContainerWithName(ps.Containers, "metrics-server"); c != nil {
c.Command = extensionswebhook.EnsureStringWithPrefix(c.Command, "--kubelet-preferred-address-types=", "InternalIP")
}
}