Documentation
¶
Index ¶
- func SetupWebhookWithManager(mgr ctrl.Manager) error
- type ComposabilityRequestCustomValidator
- func (v *ComposabilityRequestCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (warnings admission.Warnings, err error)
- func (v *ComposabilityRequestCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (warnings admission.Warnings, err error)
- func (v *ComposabilityRequestCustomValidator) ValidateUpdate(ctx context.Context, oldObj runtime.Object, newObj runtime.Object) (warnings admission.Warnings, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetupWebhookWithManager ¶
SetupComposabilityRequestWebhookWithManager registers the webhook for ComposabilityRequest in the manager.
Types ¶
type ComposabilityRequestCustomValidator ¶
type ComposabilityRequestCustomValidator struct {
// TODO(user): Add more fields as needed for validation
client.Client
}
ComposabilityRequestCustomValidator struct is responsible for validating the ComposabilityRequest 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 (*ComposabilityRequestCustomValidator) ValidateCreate ¶
func (v *ComposabilityRequestCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (warnings admission.Warnings, err error)
ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type ComposabilityRequest.
func (*ComposabilityRequestCustomValidator) ValidateDelete ¶
func (v *ComposabilityRequestCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (warnings admission.Warnings, err error)
ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type ComposabilityRequest.
func (*ComposabilityRequestCustomValidator) ValidateUpdate ¶
func (v *ComposabilityRequestCustomValidator) ValidateUpdate(ctx context.Context, oldObj runtime.Object, newObj runtime.Object) (warnings admission.Warnings, err error)
ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type ComposabilityRequest.