Skip to content

Commit

Permalink
Update backend/admission.go
Browse files Browse the repository at this point in the history
Co-authored-by: Marcus Efraimsson <[email protected]>
  • Loading branch information
ryantxu and marefr authored May 24, 2024
1 parent 9b8dfd5 commit 48f12a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/admission.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
type AdmissionHandler interface {
// ValidateAdmission is a simple yes|no check if an object can be saved
ValidateAdmission(context.Context, *AdmissionRequest) (*ValidationResponse, error)
// ValidateAdmission converts the input into an object that can be saved, or rejects the request
// MutateAdmission converts the input into an object that can be saved, or rejects the request
MutateAdmission(context.Context, *AdmissionRequest) (*MutationResponse, error)
// ConvertObject is called to covert objects between different versions
ConvertObject(context.Context, *ConversionRequest) (*ConversionResponse, error)
Expand Down

0 comments on commit 48f12a0

Please sign in to comment.