-
Notifications
You must be signed in to change notification settings - Fork 2k
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
fix(custom resource state metrics): correctly convert status condition Unknown
to a valid value
#2536
base: main
Are you sure you want to change the base?
fix(custom resource state metrics): correctly convert status condition Unknown
to a valid value
#2536
Conversation
… `Unknown` to a valid value
Thanks for the contribution! |
Agree on -1 to distinguish this unknown with others. |
/triage accepted |
@mrueg Thanks for reviewing! I have updated the value and doc, please check. |
Unknown
to a valid valueUnknown
to a valid value
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
@itaiatu: changing LGTM is restricted to collaborators 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 kubernetes-sigs/prow repository. |
We also encountered this issue and this small fix will solve it. |
/lgtm |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: CatherineF-dev, Haleygo, itaiatu 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 |
Hi @mrueg, could you help add this into v2.14.0 milestone? https://github.com/kubernetes/kube-state-metrics/milestone/7 Thx |
@dgrisonnet made me aware of kube-state-metrics/internal/store/node_test.go Lines 186 to 188 in 0738de0
Thanks and apologies for the extra work! |
What this PR does / why we need it:
According to https://github.com/kubernetes/kube-state-metrics/blob/main/docs/metrics/extend/customresourcestate-metrics.md#gauge
ConditionUnknown = "Unknown"
should be converted corrctly to a valid value, and more like0.0
instead of1.0
.How does this change affect the cardinality of KSM: (increases, decreases or does not change cardinality)
Does not change cardinality.
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #2439