Documentation
¶
Index ¶
- func SetupNodeWebhookWithManager(mgr ctrl.Manager) error
- type NodeCustomDefaulter
- type NodeCustomValidator
- func (v *NodeCustomValidator) ValidateCreate(_ context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *NodeCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *NodeCustomValidator) ValidateUpdate(_ context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetupNodeWebhookWithManager ¶
SetupNodeWebhookWithManager registers the webhook for Node in the manager.
Types ¶
type NodeCustomDefaulter ¶
type NodeCustomDefaulter struct {
// contains filtered or unexported fields
}
NodeCustomDefaulter struct is responsible for setting default values on the custom resource of the Kind Node when those are created or updated.
NOTE: The +kubebuilder:object:generate=false marker prevents controller-gen from generating DeepCopy methods, as it is used only for temporary operations and does not need to be deeply copied.
type NodeCustomValidator ¶
type NodeCustomValidator struct {
// contains filtered or unexported fields
}
NodeCustomValidator struct is responsible for validating the Node resource when it is created, updated, or deleted.
NOTE: The +kubebuilder:object:generate=false marker prevents controller-gen from generating DeepCopy methods, as this struct is used only for temporary operations and does not need to be deeply copied.
func (*NodeCustomValidator) ValidateCreate ¶
func (v *NodeCustomValidator) ValidateCreate(_ context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type Node.
func (*NodeCustomValidator) ValidateDelete ¶
func (v *NodeCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type Node.
func (*NodeCustomValidator) ValidateUpdate ¶
func (v *NodeCustomValidator) ValidateUpdate(_ context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type Node.