-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webhook: refactor with switch and helpers #1076
webhook: refactor with switch and helpers #1076
Conversation
looks good to me +1 |
controllers/webhook/webhook.go
Outdated
case admissionv1.Create: | ||
resp = w.checkDupCreation(ctx, req) | ||
default: | ||
msg := fmt.Sprintf("Webhook skipping %v request", req.Operation) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think here is meant to say "no logic check by webhook is applied on 's request" right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think here is meant to say "no logic check by webhook is applied on 's request" right?
Pretty much :)
Prepare to implement deletion check. - Use switch to select supported requests, easier to add Delete then. - Remove misleading messages for the allowed case, the last one only is in use. - Use helpers to count and to compare, there will be the same logic for deletion check. - Tune allowed message. - Use go style case with several variants instead of C-style. Signed-off-by: Yauheni Kaliuta <[email protected]>
74a525b
to
f25d61c
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: zdtsw The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
97e29c9
into
opendatahub-io:incubation
Prepare to implement deletion check. - Use switch to select supported requests, easier to add Delete then. - Remove misleading messages for the allowed case, the last one only is in use. - Use helpers to count and to compare, there will be the same logic for deletion check. - Tune allowed message. - Use go style case with several variants instead of C-style. Signed-off-by: Yauheni Kaliuta <[email protected]> (cherry picked from commit 97e29c9)
Prepare to implement deletion check. - Use switch to select supported requests, easier to add Delete then. - Remove misleading messages for the allowed case, the last one only is in use. - Use helpers to count and to compare, there will be the same logic for deletion check. - Tune allowed message. - Use go style case with several variants instead of C-style. Signed-off-by: Yauheni Kaliuta <[email protected]> (cherry picked from commit 97e29c9)
Prepare to implement deletion check. - Use switch to select supported requests, easier to add Delete then. - Remove misleading messages for the allowed case, the last one only is in use. - Use helpers to count and to compare, there will be the same logic for deletion check. - Tune allowed message. - Use go style case with several variants instead of C-style. Signed-off-by: Yauheni Kaliuta <[email protected]> (cherry picked from commit 97e29c9)
Prepare to implement deletion check.
Description
How Has This Been Tested?
Screenshot or short clip
Merge criteria