-
Notifications
You must be signed in to change notification settings - Fork 60
/
webhook.go
125 lines (113 loc) · 4.17 KB
/
webhook.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
/*
Copyright 2022 The Kubernetes 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 helpers
import (
"net"
"os"
"path"
"path/filepath"
goruntime "runtime"
"strconv"
"strings"
"time"
v1 "k8s.io/api/admissionregistration/v1"
"k8s.io/klog/v2"
utilyaml "sigs.k8s.io/cluster-api/util/yaml"
"sigs.k8s.io/controller-runtime/pkg/envtest"
)
const (
mutatingWebhookKind = "MutatingWebhookConfiguration"
validatingWebhookKind = "ValidatingWebhookConfiguration"
mutatingwebhook = "mutating-webhook-configuration"
validatingwebhook = "validating-webhook-configuration"
)
// Mutate the name of each webhook, because kubebuilder generates the same name for all controllers.
// In normal usage, kustomize will prefix the controller name, which we have to do manually here.
func appendWebhookConfiguration(configyamlFile []byte, tag string) ([]*v1.MutatingWebhookConfiguration, []*v1.ValidatingWebhookConfiguration, error) {
var mutatingWebhooks []*v1.MutatingWebhookConfiguration
var validatingWebhooks []*v1.ValidatingWebhookConfiguration
objs, err := utilyaml.ToUnstructured(configyamlFile)
if err != nil {
klog.Fatalf("failed to parse yaml")
}
// look for resources of kind MutatingWebhookConfiguration
for i := range objs {
o := objs[i]
if o.GetKind() == mutatingWebhookKind {
// update the name in metadata
if o.GetName() == mutatingwebhook {
var m v1.MutatingWebhookConfiguration
o.SetName(strings.Join([]string{mutatingwebhook, "-", tag}, ""))
if err := scheme.Convert(&o, &m, nil); err != nil {
return nil, nil, err
}
mutatingWebhooks = append(mutatingWebhooks, &m)
}
}
if o.GetKind() == validatingWebhookKind {
// update the name in metadata
if o.GetName() == validatingwebhook {
var v v1.ValidatingWebhookConfiguration
o.SetName(strings.Join([]string{validatingwebhook, "-", tag}, ""))
if err := scheme.Convert(&o, &v, nil); err != nil {
return nil, nil, err
}
validatingWebhooks = append(validatingWebhooks, &v)
}
}
}
return mutatingWebhooks, validatingWebhooks, err
}
func initializeWebhookInEnvironment() {
// Get the root of the current file to use in CRD paths.
_, filename, _, _ := goruntime.Caller(0) //nolint:dogsled
root := path.Join(path.Dir(filename), "..", "..")
path := filepath.Join(root, "config", "webhook", "manifests.yaml")
configyamlFile, err := os.ReadFile(path) //#nosec
if err != nil {
klog.Fatalf("Failed to read core webhook configuration file: %v ", err)
}
if err != nil {
klog.Fatalf("failed to parse yaml")
}
// append the webhook with suffix to avoid clashing webhooks. repeated for every webhook
mutatingWebhooks, validatingWebhooks, err := appendWebhookConfiguration(configyamlFile, "config")
if err != nil {
klog.Fatalf("Failed to append core controller webhook config: %v", err)
}
env.WebhookInstallOptions = envtest.WebhookInstallOptions{
MaxTime: 20 * time.Second,
PollInterval: time.Second,
ValidatingWebhooks: validatingWebhooks,
MutatingWebhooks: mutatingWebhooks,
}
}
// WaitForWebhooks waits for webhook port to be ready.
func (t *TestEnvironment) WaitForWebhooks() {
port := env.WebhookInstallOptions.LocalServingPort
klog.V(2).Infof("Waiting for webhook port %d to be open prior to running tests", port)
timeout := 1 * time.Second
for {
time.Sleep(1 * time.Second)
conn, err := net.DialTimeout("tcp", net.JoinHostPort("127.0.0.1", strconv.Itoa(port)), timeout)
if err != nil {
klog.V(2).Infof("Webhook port is not ready, will retry in %v: %s", timeout, err)
continue
}
if err := conn.Close(); err != nil {
klog.Fatalf("failed to close connection: %s", err)
}
klog.V(2).Info("Webhook port is now open. Continuing with tests...")
return
}
}