-
Notifications
You must be signed in to change notification settings - Fork 261
/
openstackmachine_webhook.go
127 lines (102 loc) · 4.9 KB
/
openstackmachine_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
126
127
/*
Copyright 2023 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 webhooks
import (
"context"
"fmt"
"reflect"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/webhook"
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
infrav1 "sigs.k8s.io/cluster-api-provider-openstack/api/v1beta1"
)
// +kubebuilder:webhook:verbs=create;update,path=/validate-infrastructure-cluster-x-k8s-io-v1beta1-openstackmachine,mutating=false,failurePolicy=fail,matchPolicy=Equivalent,groups=infrastructure.cluster.x-k8s.io,resources=openstackmachines,versions=v1beta1,name=validation.openstackmachine.infrastructure.cluster.x-k8s.io,sideEffects=None,admissionReviewVersions=v1beta1
func SetupOpenStackMachineWebhook(mgr manager.Manager) error {
return builder.WebhookManagedBy(mgr).
For(&infrav1.OpenStackMachine{}).
WithValidator(&openStackMachineWebhook{}).
Complete()
}
type openStackMachineWebhook struct{}
// Compile-time assertion that openStackMachineWebhook implements webhook.CustomValidator.
var _ webhook.CustomValidator = &openStackMachineWebhook{}
// ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type.
func (*openStackMachineWebhook) ValidateCreate(_ context.Context, objRaw runtime.Object) (admission.Warnings, error) {
var allErrs field.ErrorList
newObj, err := castToOpenStackMachine(objRaw)
if err != nil {
return nil, err
}
if newObj.Spec.RootVolume != nil && newObj.Spec.AdditionalBlockDevices != nil {
for _, device := range newObj.Spec.AdditionalBlockDevices {
if device.Name == "root" {
allErrs = append(allErrs, field.Forbidden(field.NewPath("spec", "additionalBlockDevices"), "cannot contain a device named \"root\" when rootVolume is set"))
}
}
}
return aggregateObjErrors(newObj.GroupVersionKind().GroupKind(), newObj.Name, allErrs)
}
// ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type.
func (*openStackMachineWebhook) ValidateUpdate(_ context.Context, oldObjRaw, newObjRaw runtime.Object) (admission.Warnings, error) {
newObj, err := castToOpenStackMachine(newObjRaw)
if err != nil {
return nil, err
}
newOpenStackMachine, err := runtime.DefaultUnstructuredConverter.ToUnstructured(newObj)
if err != nil {
return nil, apierrors.NewInvalid(infrav1.GroupVersion.WithKind("OpenStackMachine").GroupKind(), newObj.Name, field.ErrorList{
field.InternalError(nil, fmt.Errorf("failed to convert new OpenStackMachine to unstructured object: %w", err)),
})
}
oldOpenStackMachine, err := runtime.DefaultUnstructuredConverter.ToUnstructured(oldObjRaw)
if err != nil {
return nil, apierrors.NewInvalid(infrav1.GroupVersion.WithKind("OpenStackMachine").GroupKind(), newObj.Name, field.ErrorList{
field.InternalError(nil, fmt.Errorf("failed to convert old OpenStackMachine to unstructured object: %w", err)),
})
}
var allErrs field.ErrorList
newOpenStackMachineSpec := newOpenStackMachine["spec"].(map[string]interface{})
oldOpenStackMachineSpec := oldOpenStackMachine["spec"].(map[string]interface{})
// allow changes to providerID once
if oldOpenStackMachineSpec["providerID"] == nil {
delete(oldOpenStackMachineSpec, "providerID")
delete(newOpenStackMachineSpec, "providerID")
}
// allow changes to instanceID once
if oldOpenStackMachineSpec["instanceID"] == nil {
delete(oldOpenStackMachineSpec, "instanceID")
delete(newOpenStackMachineSpec, "instanceID")
}
// allow changes to identifyRef
delete(oldOpenStackMachineSpec, "identityRef")
delete(newOpenStackMachineSpec, "identityRef")
if !reflect.DeepEqual(oldOpenStackMachineSpec, newOpenStackMachineSpec) {
allErrs = append(allErrs, field.Forbidden(field.NewPath("spec"), "cannot be modified"))
}
return aggregateObjErrors(newObj.GroupVersionKind().GroupKind(), newObj.Name, allErrs)
}
// ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type.
func (*openStackMachineWebhook) ValidateDelete(_ context.Context, _ runtime.Object) (admission.Warnings, error) {
return nil, nil
}
func castToOpenStackMachine(obj runtime.Object) (*infrav1.OpenStackMachine, error) {
cast, ok := obj.(*infrav1.OpenStackMachine)
if !ok {
return nil, fmt.Errorf("expected an OpenStackMachine but got a %T", obj)
}
return cast, nil
}