Skip to content
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

NO-JIRA: reduce node lease back off flames to 2 #29110

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

kannon92
Copy link
Contributor

No description provided.

@openshift-ci openshift-ci bot requested a review from deads2k September 17, 2024 20:58
Copy link
Contributor

openshift-ci bot commented Sep 17, 2024

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: kannon92
Once this PR has been reviewed and has the lgtm label, please assign sosiouxme for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@@ -71,8 +71,7 @@ func nodeFailedLeaseErrors(startedAt time.Time, finalIntervals monitorapi.Interv
const testName = "[sig-node] kubelet-log-collector detects node failed to lease events"
var failures []string

intervalsToFailOn := findLeaseIntervalsImportant(finalIntervals)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to filter this down to the type you're looking for, right?

}
importantIntervals := monitorapi.Intervals(nil)
for _, val := range intervalsByNode {
if len(val) < 3 {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if we reduce this to 2 so we flake if we get two instances and see how many hits we get?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated.

@kannon92
Copy link
Contributor Author

/retitle NO-JIRA: reduce node lease back off flames to 2

@openshift-ci openshift-ci bot changed the title flake on any occurence of node lease backoff NO-JIRA: reduce node lease back off flames to 2 Sep 18, 2024
@openshift-ci-robot
Copy link

@kannon92: This pull request explicitly references no jira issue.

In response to this:

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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Sep 18, 2024
Copy link
Contributor

openshift-ci bot commented Sep 18, 2024

@kannon92: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-aws-ovn-kube-apiserver-rollout 05af498 link false /test e2e-aws-ovn-kube-apiserver-rollout
ci/prow/e2e-aws-csi 05af498 link false /test e2e-aws-csi
ci/prow/e2e-aws-ovn-upgrade 05af498 link false /test e2e-aws-ovn-upgrade
ci/prow/e2e-gcp-ovn-upgrade 05af498 link true /test e2e-gcp-ovn-upgrade
ci/prow/e2e-aws-ovn-single-node-serial 05af498 link false /test e2e-aws-ovn-single-node-serial
ci/prow/e2e-aws-ovn-single-node-upgrade 05af498 link false /test e2e-aws-ovn-single-node-upgrade
ci/prow/e2e-aws-ovn-ipsec-serial 05af498 link false /test e2e-aws-ovn-ipsec-serial
ci/prow/e2e-openstack-ovn 05af498 link false /test e2e-openstack-ovn

Full PR test history. Your PR dashboard.

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-sigs/prow repository. I understand the commands that are listed here.

@@ -554,7 +554,7 @@ func findLeaseIntervalsImportant(intervals monitorapi.Intervals) monitorapi.Inte
}
importantIntervals := monitorapi.Intervals(nil)
for _, val := range intervalsByNode {
if len(val) < 3 {
if len(val) < 2 {
continue
}
for i, interval := range val {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in this for loop the 2s need to become 1s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants