Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // HandlerMap contains admission webhook handlers HandlerMap = map[string]admission.Handler{ "validate-apps-kruise-io-persistentpodstate": &PersistentPodStateCreateUpdateHandler{}, } )
Functions ¶
This section is empty.
Types ¶
type PersistentPodStateCreateUpdateHandler ¶
type PersistentPodStateCreateUpdateHandler struct { // To use the client, you need to do the following: // - uncomment it // - import sigs.k8s.io/controller-runtime/pkg/client // - uncomment the InjectClient method at the bottom of this file. Client client.Client // Decoder decodes objects Decoder *admission.Decoder }
PersistentPodStateCreateUpdateHandler handles PersistentPodState
func (*PersistentPodStateCreateUpdateHandler) Handle ¶
func (h *PersistentPodStateCreateUpdateHandler) Handle(ctx context.Context, req admission.Request) admission.Response
Handle handles admission requests.
func (*PersistentPodStateCreateUpdateHandler) InjectClient ¶
func (h *PersistentPodStateCreateUpdateHandler) InjectClient(c client.Client) error
InjectClient injects the client into the PersistentPodStateCreateUpdateHandler
func (*PersistentPodStateCreateUpdateHandler) InjectDecoder ¶
func (h *PersistentPodStateCreateUpdateHandler) InjectDecoder(d *admission.Decoder) error
InjectDecoder injects the decoder into the PersistentPodStateCreateUpdateHandler
Click to show internal directories.
Click to hide internal directories.