-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
1.7.7, 1.7.8 Cherry picks #16722
1.7.7, 1.7.8 Cherry picks #16722
Conversation
@ironcladlou fyi |
/retest |
picks look fine, tests need looking into. unit test is legitimate:
couln't actually spot the failed integration test |
They are alpha and were sunset and replaced by CRD.
…ttable when empty and updates the StatefulSet controller to set them when empty
…dbalancer healthcheck is nil
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: liggitt, soltysh The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/retest Please review the full test history for this PR and help us cut down flakes. |
Added missing import, I'll apply the labels back when tests will be green. |
flake #16716 |
/retest |
@@ -94,7 +94,7 @@ func (h *WebHookHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | |||
|
|||
// ProcessWebHook does the actual work of processing the webhook request | |||
func (w *WebHookHandler) ProcessWebHook(writer http.ResponseWriter, req *http.Request, ctx apirequest.Context, name, subpath string) error { | |||
parts := strings.Split(subpath, "/") | |||
parts := strings.Split(strings.TrimPrefix(subpath, "/"), "/") |
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.
@bparees fyi
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.
@soltysh thanks.... k8s changed something about how the provide the request path to us??
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.
Subresource path was stripping leading/trailing slashes incorrectly. Fixed in 1.7.8
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.
Yup, just that.
@soltysh: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/retest |
Applying the lgtm label on green tests. |
Automatic merge from submit-queue (batch tested with PRs 16600, 16722, 16760, 16784). |
Fixes #16361