-
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
Refactor blueprint route validation and generate events on errors #20722
Conversation
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.
Thanks, looks great- just one tiny thing
|
||
if _, err := p.client.Events(route.Namespace).Create(e); err != nil { | ||
glog.Errorf("adding blueprint route error event: %v", err) | ||
return |
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.
Superfluous return
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.
/lgtm
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.
/hold
Test case need to be fixed.
Test Failure:
[WARNING] go test
had the following output to stderr:
[WARNING] # github.com/openshift/origin/pkg/router/template/configmanager/haproxy
[WARNING] pkg/router/template/configmanager/haproxy/blueprint_plugin_test.go:102:30: not enough arguments in call to NewBlueprintPlugin
[WARNING] have (*fakeConfigManager)
[WARNING] want (templaterouter.ConfigManager, "github.com/openshift/origin/vendor/k8s.io/client-go/kubernetes/typed/core/v1".CoreV1Interface)
[WARNING] pkg/router/template/configmanager/haproxy/blueprint_plugin_test.go:140:30: not enough arguments in call to NewBlueprintPlugin
[WARNING] have (*fakeConfigManager)
[WARNING] want (templaterouter.ConfigManager, "github.com/openshift/origin/vendor/k8s.io/client-go/kubernetes/typed/core/v1".CoreV1Interface)
[WARNING] pkg/router/template/configmanager/haproxy/blueprint_plugin_test.go:179:30: not enough arguments in call to NewBlueprintPlugin
[WARNING] have (*fakeConfigManager)
[WARNING] want (templaterouter.ConfigManager, "github.com/openshift/origin/vendor/k8s.io/client-go/kubernetes/typed/core/v1".CoreV1Interface)
[WARNING] pkg/router/template/configmanager/haproxy/blueprint_plugin_test.go:196:30: not enough arguments in call to NewBlueprintPlugin
[WARNING] have (*fakeConfigManager)
[WARNING] want (templaterouter.ConfigManager, "github.com/openshift/origin/vendor/k8s.io/client-go/kubernetes/typed/core/v1".CoreV1Interface)
ce74c06
to
f2bbf2c
Compare
/retest |
1 similar comment
/retest |
/test all |
/retest |
1 similar comment
/retest |
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.
/lgtm
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pravisankar, ramr If they are not already assigned, you can assign the PR to them by writing 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 |
/hold cancel |
@ramr: PR needs rebase. 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. |
@ramr: The following tests 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. |
Closing this out as the router code moved to another repo and a new PR was opened for this. |
As per #20646 follow up to refactor the validation and generate events on errors.
/cc @openshift/sig-network-edge
Edited Update PR to remove event generation code as per the standup discussion.