Documentation
¶
Index ¶
- func SetupRemoteSyncerWebhookWithManager(mgr ctrl.Manager) error
- func SetupRemoteUserBindingWebhookWithManager(mgr ctrl.Manager) error
- func SetupRemoteUserWebhookWithManager(mgr ctrl.Manager) error
- type RemoteSyncerCustomValidator
- func (v *RemoteSyncerCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *RemoteSyncerCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *RemoteSyncerCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
- type RemoteSyncerWebhookHandler
- type RemoteUserAssociationWebhookHandler
- type RemoteUserBindingPermissionsWebhookHandler
- type RemoteUserCustomValidator
- func (v *RemoteUserCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *RemoteUserCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (v *RemoteUserCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
- type RemoteUserPermissionsWebhookHandler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetupRemoteSyncerWebhookWithManager ¶
func SetupRemoteSyncerWebhookWithManager(mgr ctrl.Manager) error
SetupRemoteSyncerWebhookWithManager registers the webhook for RemoteSyncer in the manager.
func SetupRemoteUserBindingWebhookWithManager ¶
func SetupRemoteUserBindingWebhookWithManager(mgr ctrl.Manager) error
SetupRemoteUserBindingWebhookWithManager registers the webhook for RemoteUserBinding in the manager.
func SetupRemoteUserWebhookWithManager ¶
func SetupRemoteUserWebhookWithManager(mgr ctrl.Manager) error
SetupRemoteUserWebhookWithManager registers the webhook for RemoteUser in the manager.
Types ¶
type RemoteSyncerCustomValidator ¶
type RemoteSyncerCustomValidator struct {
}
func (*RemoteSyncerCustomValidator) ValidateCreate ¶
func (v *RemoteSyncerCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type RemoteSyncer.
func (*RemoteSyncerCustomValidator) ValidateDelete ¶
func (v *RemoteSyncerCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type RemoteSyncer.
func (*RemoteSyncerCustomValidator) ValidateUpdate ¶
func (v *RemoteSyncerCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type RemoteSyncer.
type RemoteSyncerWebhookHandler ¶
type RemoteSyncerWebhookHandler struct {
Client client.Client
Decoder *admission.Decoder
}
type RemoteUserAssociationWebhookHandler ¶ added in v0.3.1
type RemoteUserAssociationWebhookHandler struct {
Client client.Client
Decoder *admission.Decoder
}
type RemoteUserBindingPermissionsWebhookHandler ¶ added in v0.3.1
type RemoteUserBindingPermissionsWebhookHandler struct {
Client client.Client
Decoder *admission.Decoder
}
type RemoteUserCustomValidator ¶
type RemoteUserCustomValidator struct {
}
func (*RemoteUserCustomValidator) ValidateCreate ¶
func (v *RemoteUserCustomValidator) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateCreate implements webhook.CustomValidator so a webhook will be registered for the type RemoteUser.
func (*RemoteUserCustomValidator) ValidateDelete ¶
func (v *RemoteUserCustomValidator) ValidateDelete(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateDelete implements webhook.CustomValidator so a webhook will be registered for the type RemoteUser.
func (*RemoteUserCustomValidator) ValidateUpdate ¶
func (v *RemoteUserCustomValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (admission.Warnings, error)
ValidateUpdate implements webhook.CustomValidator so a webhook will be registered for the type RemoteUser.
type RemoteUserPermissionsWebhookHandler ¶ added in v0.3.1
type RemoteUserPermissionsWebhookHandler struct {
Client client.Client
Decoder *admission.Decoder
}