Documentation ¶
Index ¶
- Constants
- type Handler
- func (h *Handler) AddToManager(mgr manager.Manager) error
- func (h *Handler) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
- func (h *Handler) ValidateDelete(_ context.Context, _ runtime.Object) (admission.Warnings, error)
- func (h *Handler) ValidateUpdate(ctx context.Context, _, newObj runtime.Object) (admission.Warnings, error)
Constants ¶
View Source
const ( // HandlerName is the name of this admission webhook handler. HandlerName = "kubeconfig_validator" // WebhookPath is the HTTP handler path for this admission webhook handler. WebhookPath = "/webhooks/validate-kubeconfig-secrets" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶ added in v1.60.0
Handler checks, if the secrets contains a kubeconfig and denies kubeconfigs with invalid fields (e.g. tokenFile or exec).
func (*Handler) AddToManager ¶ added in v1.60.0
AddToManager adds Handler to the given manager.
func (*Handler) ValidateCreate ¶ added in v1.60.0
func (h *Handler) ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)
ValidateCreate performs the check.
func (*Handler) ValidateDelete ¶ added in v1.60.0
ValidateDelete returns nil (not implemented by this handler).
Click to show internal directories.
Click to hide internal directories.