-
Notifications
You must be signed in to change notification settings - Fork 4.8k
OCPBUGS-63307: Add ConfigDriftMonitorStoppedTooOften matcher #30474
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
base: main
Are you sure you want to change the base?
Conversation
|
@QiWang19: This pull request references Jira Issue OCPBUGS-63307, which is valid. 3 validation(s) were run on this bug
The bug has been updated to refer to the pull request using the external bug tracker. 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. |
|
/payload-job periodic-ci-openshift-release-master-ci-4.21-e2e-gcp-ovn-techpreview-serial |
|
@QiWang19: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/33fb8b60-bf1f-11f0-8e20-9cdfe664fb9f-0 |
|
Asked a question in the jira, but I'm not seeing why this should be sent 25x in a job run. |
| func newConfigDriftMonitorStoppedTooOftenEventMatcher(finalIntervals monitorapi.Intervals) EventMatcher { | ||
| configDriftMonitorStoppedIntervals := finalIntervals.Filter(func(eventInterval monitorapi.Interval) bool { | ||
| return eventInterval.Source == monitorapi.SourceE2ETest && | ||
| strings.Contains(eventInterval.Locator.Keys[monitorapi.LocatorE2ETestKey], "imagepolicy signature validation") |
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.
Not all of your tests match this string. Perhaps match on SigstoreImageVerification, and only limit to +/- 30s rather than 10 minutes. This should give a very precise ignore for ConfigDriftMonitorStopped events overlapping with any of your tests.
Add ConfigDriftMonitorStoppedTooOften matcher for image signature validation tests. Fix the run failure ``` 8 events happened too frequently event happened 24 times, something is wrong: node/ci-op-7b9qs4mj-863c8-hkhwh-worker-a-bm2wt hmsg/8a96eaa4fd - reason/ConfigDriftMonitorStopped Config Drift Monitor stopped (19:47:32Z) result=reject ``` Signed-off-by: Qi Wang <[email protected]>
1c2013e to
ec0d7f4
Compare
|
/payload-job periodic-ci-openshift-release-master-ci-4.21-e2e-gcp-ovn-techpreview-serial |
|
@QiWang19: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/bf298370-c4bc-11f0-9621-93026fb421ac-0 |
|
Job Failure Risk Analysis for sha: ec0d7f4
|
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dgoodwin, QiWang19 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 |
|
/retest-required |
|
Scheduling required tests: |
|
@QiWang19: all tests passed! 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. |
|
/payload-job periodic-ci-openshift-release-master-ci-4.21-e2e-gcp-ovn-techpreview-serial |
|
@QiWang19: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/16348310-c632-11f0-93f3-e7a2c4001620-0 |
|
/verified by payload-job https://pr-payload-tests.ci.openshift.org/runs/ci/16348310-c632-11f0-93f3-e7a2c4001620-0 |
|
@QiWang19: This PR has been marked as verified by 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. |
Add ConfigDriftMonitorStoppedTooOften matcher for image signature validation tests. Fix the run failure