Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // HandlerBuilderMap contains admission webhook handlers builder HandlerBuilderMap = map[string]framework.HandlerBuilder{ "mutate-pod": &podMutateBuilder{}, } )
Functions ¶
This section is empty.
Types ¶
type PodMutatingHandler ¶
type PodMutatingHandler struct { Client client.Client // Decoder decodes objects Decoder *admission.Decoder }
PodMutatingHandler handles Pod
func (*PodMutatingHandler) Handle ¶
func (h *PodMutatingHandler) Handle(ctx context.Context, req admission.Request) (resp admission.Response)
Handle handles admission requests.
func (*PodMutatingHandler) InjectClient ¶
func (h *PodMutatingHandler) InjectClient(c client.Client) error
InjectClient injects the client into the PodMutatingHandler
func (*PodMutatingHandler) InjectDecoder ¶
func (h *PodMutatingHandler) InjectDecoder(d *admission.Decoder) error
InjectDecoder injects the decoder into the PodMutatingHandler
Click to show internal directories.
Click to hide internal directories.