forked from cloudnative-pg/cloudnative-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhooks.go
192 lines (166 loc) · 5.85 KB
/
webhooks.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
/*
Copyright The CloudNativePG Contributors
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 utils
import (
"bytes"
"context"
"fmt"
admissionregistrationv1 "k8s.io/api/admissionregistration/v1"
corev1 "k8s.io/api/core/v1"
apiextensionv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"github.com/cloudnative-pg/cloudnative-pg/internal/cmd/manager/controller"
)
// GetCNPGsMutatingWebhookByName get the MutatingWebhook filtered by the name of one
// of the webhooks
func GetCNPGsMutatingWebhookByName(env *TestingEnvironment, name string) (
*admissionregistrationv1.MutatingWebhookConfiguration, int, error,
) {
var mWebhooks admissionregistrationv1.MutatingWebhookConfigurationList
err := GetObjectList(env, &mWebhooks)
if err != nil {
return nil, 0, err
}
for i, item := range mWebhooks.Items {
for i2, webhook := range item.Webhooks {
if webhook.Name == name {
return &mWebhooks.Items[i], i2, nil
}
}
}
return nil, 0, fmt.Errorf("mutating webhook not found")
}
// UpdateCNPGsMutatingWebhookConf update MutatingWebhookConfiguration object
func UpdateCNPGsMutatingWebhookConf(env *TestingEnvironment,
wh *admissionregistrationv1.MutatingWebhookConfiguration,
) error {
ctx := context.Background()
_, err := env.Interface.AdmissionregistrationV1().
MutatingWebhookConfigurations().Update(ctx, wh, metav1.UpdateOptions{})
if err != nil {
return err
}
return nil
}
// GetCNPGsValidatingWebhookConf get the ValidatingWebhook linked to the operator
func GetCNPGsValidatingWebhookConf(env *TestingEnvironment) (
*admissionregistrationv1.ValidatingWebhookConfiguration, error,
) {
ctx := context.Background()
validatingWebhookConfig, err := env.Interface.AdmissionregistrationV1().ValidatingWebhookConfigurations().Get(
ctx, controller.ValidatingWebhookConfigurationName, metav1.GetOptions{})
if err != nil {
return nil, err
}
return validatingWebhookConfig, nil
}
// GetCNPGsValidatingWebhookByName get ValidatingWebhook by the name of one
// of the webhooks
func GetCNPGsValidatingWebhookByName(env *TestingEnvironment, name string) (
*admissionregistrationv1.ValidatingWebhookConfiguration, int, error,
) {
var vWebhooks admissionregistrationv1.ValidatingWebhookConfigurationList
err := GetObjectList(env, &vWebhooks)
if err != nil {
return nil, 0, err
}
for i, item := range vWebhooks.Items {
for i2, webhook := range item.Webhooks {
if webhook.Name == name {
return &vWebhooks.Items[i], i2, nil
}
}
}
return nil, 0, fmt.Errorf("validating webhook not found")
}
// UpdateCNPGsValidatingWebhookConf update the ValidatingWebhook object
func UpdateCNPGsValidatingWebhookConf(env *TestingEnvironment,
wh *admissionregistrationv1.ValidatingWebhookConfiguration,
) error {
ctx := context.Background()
_, err := env.Interface.AdmissionregistrationV1().
ValidatingWebhookConfigurations().Update(ctx, wh, metav1.UpdateOptions{})
if err != nil {
return err
}
return nil
}
// CheckWebhookReady ensures that the operator has finished the webhook setup.
func CheckWebhookReady(env *TestingEnvironment, namespace string) error {
// Check CA
secret := &corev1.Secret{}
secretNamespacedName := types.NamespacedName{
Namespace: namespace,
Name: controller.WebhookSecretName,
}
err := GetObject(env, secretNamespacedName, secret)
if err != nil {
return err
}
ca := secret.Data["tls.crt"]
mutatingWebhookConfig, err := env.GetCNPGsMutatingWebhookConf()
if err != nil {
return err
}
for _, webhook := range mutatingWebhookConfig.Webhooks {
if !bytes.Equal(webhook.ClientConfig.CABundle, ca) {
return fmt.Errorf("secret %+v not match with ca bundle in %v: %v is not equal to %v",
controller.MutatingWebhookConfigurationName, secret, string(ca), string(webhook.ClientConfig.CABundle))
}
}
validatingWebhookConfig, err := GetCNPGsValidatingWebhookConf(env)
if err != nil {
return err
}
for _, webhook := range validatingWebhookConfig.Webhooks {
if !bytes.Equal(webhook.ClientConfig.CABundle, ca) {
return fmt.Errorf("secret not match with ca bundle in %v",
controller.ValidatingWebhookConfigurationName)
}
}
customResourceDefinitionsName := []string{
"backups.postgresql.cnpg.io",
"clusters.postgresql.cnpg.io",
"scheduledbackups.postgresql.cnpg.io",
}
ctx := context.Background()
for _, c := range customResourceDefinitionsName {
crd, err := env.APIExtensionClient.ApiextensionsV1().CustomResourceDefinitions().Get(
ctx, c, metav1.GetOptions{})
if err != nil {
return err
}
if crd.Spec.Conversion == nil {
continue
}
if crd.Spec.Conversion.Strategy == apiextensionv1.NoneConverter {
continue
}
if crd.Spec.Conversion.Webhook != nil && crd.Spec.Conversion.Webhook.ClientConfig != nil &&
!bytes.Equal(crd.Spec.Conversion.Webhook.ClientConfig.CABundle, ca) {
return fmt.Errorf("secret not match with ca bundle in %v; %v not equal to %v", c,
string(crd.Spec.Conversion.Webhook.ClientConfig.CABundle), string(ca))
}
}
return nil
}
// GetCNPGsMutatingWebhookConf get the MutatingWebhook linked to the operator
func (env TestingEnvironment) GetCNPGsMutatingWebhookConf() (
*admissionregistrationv1.MutatingWebhookConfiguration, error,
) {
ctx := context.Background()
return env.Interface.AdmissionregistrationV1().
MutatingWebhookConfigurations().
Get(ctx, controller.MutatingWebhookConfigurationName, metav1.GetOptions{})
}