Documentation
¶
Overview ¶
Package v1beta1 contains webhook code for version v1beta1
Index ¶
- func SetupSystemWebhookWithManager(mgr ctrl.Manager) error
- type SystemCustomDefaulter
- type SystemCustomValidator
- func (v *SystemCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *SystemCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *SystemCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetupSystemWebhookWithManager ¶
SetupSystemWebhookWithManager registers the webhook for System in the manager.
Types ¶
type SystemCustomDefaulter ¶
type SystemCustomDefaulter struct { }
SystemCustomDefaulter struct is responsible for setting default values on the custom resource of the Kind System 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 SystemCustomValidator ¶
type SystemCustomValidator struct { }
SystemCustomValidator struct is responsible for validating the System 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 (*SystemCustomValidator) ValidateCreate ¶
func (v *SystemCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
nolint:all ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type System.
func (*SystemCustomValidator) ValidateDelete ¶
func (v *SystemCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
nolint:all ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type System.
func (*SystemCustomValidator) ValidateUpdate ¶
func (v *SystemCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
nolint:all ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type System.