-
Notifications
You must be signed in to change notification settings - Fork 364
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
OCPBUGS-35095: drop redundant KSM selector from KubeCPUOvercommit
#2422
base: master
Are you sure you want to change the base?
Conversation
@rexagod: This pull request references Jira Issue OCPBUGS-35095, which is invalid:
Comment 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. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rexagod 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 |
/jira refresh |
@rexagod: This pull request references Jira Issue OCPBUGS-35095, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: 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. |
/retest |
@rexagod need to run "make generate"? |
/hold |
IIUC It seems updating |
I can push for a branch upstream that ports post-refactor commits while making use of the earlier Grafana v11 dashboards. Or we might want to refactor our jsonnets internally (better IMO). |
@@ -58,14 +58,13 @@ | |||
"version": "main" | |||
}, | |||
{ | |||
"name": "kubernetes-mixin is pinned because newer versions are breaking MON-3837", |
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.
Since #2482 removed CMO's dependency on k/k-mixin
for dashboards, I believe we can unpin and sync with upstream to update the recording rules that depend on the same.
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.
A follow-up PR will unpin the kubernetes-monitoring/kubernetes-mixin version.
Ah, never mind, I just noticed Simon's comment there.
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 that we can remove the whole entry for kubernetes-monitoring/kubernetes-mixin and just depend on the version pulled by kube-prometheus.
/test e2e-aws-ovn-single-node |
Good for reviews now. 🙂 |
d2bee11
to
e6723f9
Compare
e6723f9
to
1a14258
Compare
/test e2e-agnostic-operator |
1 similar comment
/test e2e-agnostic-operator |
1a14258
to
5e91f39
Compare
Also drop redundant KSM selector from KubeCPUOvercommit. Signed-off-by: Pranshu Srivastava <[email protected]>
5e91f39
to
9f13c4e
Compare
/test e2e-agnostic-operator |
@rexagod: 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. |
@@ -58,14 +58,13 @@ | |||
"version": "main" | |||
}, | |||
{ | |||
"name": "kubernetes-mixin is pinned because newer versions are breaking MON-3837", |
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 that we can remove the whole entry for kubernetes-monitoring/kubernetes-mixin and just depend on the version pulled by kube-prometheus.
@@ -336,7 +336,7 @@ spec: | |||
description: The kubernetes apiserver has terminated {{ $value | humanizePercentage }} of its incoming requests. | |||
summary: The kubernetes apiserver has terminated {{ $value | humanizePercentage }} of its incoming requests. | |||
expr: | | |||
sum(rate(apiserver_request_terminations_total{job="apiserver"}[10m])) / ( sum(rate(apiserver_request_total{job="apiserver"}[10m])) + sum(rate(apiserver_request_terminations_total{job="apiserver"}[10m])) ) > 0.20 | |||
sum by(cluster) (rate(apiserver_request_terminations_total{job="apiserver"}[10m])) / ( sum by(cluster) (rate(apiserver_request_total{job="apiserver"}[10m])) + sum by(cluster) (rate(apiserver_request_terminations_total{job="apiserver"}[10m])) ) > 0.20 |
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.
unrelated to this PR but I'd recommend to remove the KubeAPITerminatedRequests
alerting rule since we're not owners for the API server. And same goes with KubeAPIDown
.
Sync changes with upstream.