-
Notifications
You must be signed in to change notification settings - Fork 286
/
vspheremachineconfig_webhook.go
198 lines (157 loc) Β· 6.36 KB
/
vspheremachineconfig_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
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
package v1alpha1
import (
"fmt"
"reflect"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
ctrl "sigs.k8s.io/controller-runtime"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/webhook"
)
// log is for logging in this package.
var vspheremachineconfiglog = logf.Log.WithName("vspheremachineconfig-resource")
func (r *VSphereMachineConfig) SetupWebhookWithManager(mgr ctrl.Manager) error {
return ctrl.NewWebhookManagedBy(mgr).
For(r).
Complete()
}
// EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN!
//+kubebuilder:webhook:path=/mutate-anywhere-eks-amazonaws-com-v1alpha1-vspheremachineconfig,mutating=true,failurePolicy=fail,sideEffects=None,groups=anywhere.eks.amazonaws.com,resources=vspheremachineconfigs,verbs=create;update,versions=v1alpha1,name=mutation.vspheremachineconfig.anywhere.amazonaws.com,admissionReviewVersions={v1,v1beta1}
var _ webhook.Defaulter = &VSphereMachineConfig{}
// Default implements webhook.Defaulter so a webhook will be registered for the type.
func (r *VSphereMachineConfig) Default() {
vspheremachineconfiglog.Info("Setting up VSphere Machine Config defaults for", "name", r.Name)
r.SetDefaults()
}
// TODO(user): change verbs to "verbs=create;update;delete" if you want to enable deletion validation.
//+kubebuilder:webhook:path=/validate-anywhere-eks-amazonaws-com-v1alpha1-vspheremachineconfig,mutating=false,failurePolicy=fail,sideEffects=None,groups=anywhere.eks.amazonaws.com,resources=vspheremachineconfigs,verbs=create;update,versions=v1alpha1,name=validation.vspheremachineconfig.anywhere.amazonaws.com,admissionReviewVersions={v1,v1beta1}
var _ webhook.Validator = &VSphereMachineConfig{}
// ValidateCreate implements webhook.Validator so a webhook will be registered for the type.
func (r *VSphereMachineConfig) ValidateCreate() error {
vspheremachineconfiglog.Info("validate create", "name", r.Name)
if err := r.ValidateHasTemplate(); err != nil {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, field.ErrorList{
field.Invalid(field.NewPath("spec", "template"), r.Spec, err.Error()),
})
}
if err := r.ValidateUsers(); err != nil {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, field.ErrorList{
field.Invalid(field.NewPath("spec", "users"), r.Spec.Users, err.Error()),
})
}
if err := r.Validate(); err != nil {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, field.ErrorList{
field.Invalid(field.NewPath("spec", "users"), r.Spec.Users, err.Error()),
})
}
return nil
}
// ValidateUpdate implements webhook.Validator so a webhook will be registered for the type.
func (r *VSphereMachineConfig) ValidateUpdate(old runtime.Object) error {
vspheremachineconfiglog.Info("validate update", "name", r.Name)
oldVSphereMachineConfig, ok := old.(*VSphereMachineConfig)
if !ok {
return apierrors.NewBadRequest(fmt.Sprintf("expected a VSphereMachineConfig but got a %T", old))
}
if err := r.ValidateUsers(); err != nil {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, field.ErrorList{
field.Invalid(field.NewPath("spec", "users"), r.Spec.Users, err.Error()),
})
}
var allErrs field.ErrorList
allErrs = append(allErrs, validateImmutableFieldsVSphereMachineConfig(r, oldVSphereMachineConfig)...)
if len(allErrs) != 0 {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, allErrs)
}
if err := r.Validate(); err != nil {
allErrs = append(allErrs, field.Invalid(field.NewPath("spec"), r.Spec, err.Error()))
}
if len(allErrs) != 0 {
return apierrors.NewInvalid(GroupVersion.WithKind(VSphereMachineConfigKind).GroupKind(), r.Name, allErrs)
}
return nil
}
func validateImmutableFieldsVSphereMachineConfig(new, old *VSphereMachineConfig) field.ErrorList {
if old.IsReconcilePaused() {
vspheremachineconfiglog.Info("Reconciliation is paused")
return nil
}
var allErrs field.ErrorList
specPath := field.NewPath("spec")
if old.Spec.OSFamily != new.Spec.OSFamily {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("osFamily"), "field is immutable"),
)
}
if old.Spec.StoragePolicyName != new.Spec.StoragePolicyName {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("storagePolicyName"), "field is immutable"),
)
}
if old.IsManaged() {
vspheremachineconfiglog.Info("Machine config is associated with workload cluster", "name", old.Name)
return allErrs
}
if !old.IsEtcd() && !old.IsControlPlane() {
vspheremachineconfiglog.Info("Machine config is associated with management cluster's worker nodes", "name", old.Name)
return allErrs
}
vspheremachineconfiglog.Info("Machine config is associated with management cluster's control plane or etcd", "name", old.Name)
if !reflect.DeepEqual(old.Spec.Users, new.Spec.Users) {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("users"), "field is immutable"),
)
}
if old.Spec.Template != new.Spec.Template {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("template"), "field is immutable"),
)
}
if old.Spec.Datastore != new.Spec.Datastore {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("datastore"), "field is immutable"),
)
}
if old.Spec.Folder != new.Spec.Folder {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("folder"), "field is immutable"),
)
}
if old.Spec.ResourcePool != new.Spec.ResourcePool {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("resourcePool"), "field is immutable"),
)
}
if old.Spec.MemoryMiB != new.Spec.MemoryMiB {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("memoryMiB"), "field is immutable"),
)
}
if old.Spec.NumCPUs != new.Spec.NumCPUs {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("numCPUs"), "field is immutable"),
)
}
if old.Spec.DiskGiB != new.Spec.DiskGiB {
allErrs = append(
allErrs,
field.Forbidden(specPath.Child("diskGiB"), "field is immutable"),
)
}
return allErrs
}
// ValidateDelete implements webhook.Validator so a webhook will be registered for the type.
func (r *VSphereMachineConfig) ValidateDelete() error {
vspheremachineconfiglog.Info("validate delete", "name", r.Name)
return nil
}