You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
## v2.13.0 / 2024-07-18
2
+
3
+
### Note
4
+
5
+
* This release builds with Golang `v1.22.5`.
6
+
* This release builds with `k8s.io/client-go`: `v0.30.3`.
7
+
* This release adds read and write timeouts for requests. The defaults might have an impact on scrapes that take a long time.
8
+
9
+
*[BUGFIX] Pod autosharding: transition from labelselector to fieldselector by @pkoutsovasilis in <https://github.com/kubernetes/kube-state-metrics/pull/2347>
10
+
*[ENHANCEMENT] Add automatic detection of memory limits by @SuperQ in <https://github.com/kubernetes/kube-state-metrics/pull/2447>
11
+
*[FEATURE] Add `readyz` endpoint by @rexagod in <https://github.com/kubernetes/kube-state-metrics/pull/2442>
12
+
*[FEATURE] Add `livez` endpoint by @rexagod in <https://github.com/kubernetes/kube-state-metrics/pull/2418>
13
+
*[FEATURE] Add kube_persistentvolume_volume_mode metric by @ricardoapl in <https://github.com/kubernetes/kube-state-metrics/pull/2370>
14
+
*[FEATURE] Add read and write timeouts by @Pokom in <https://github.com/kubernetes/kube-state-metrics/pull/2412>
@find internal/store -type f -not -name '*_test.go' -exec sed -nE 's/.*"(kube_[^"]+)".*/\1/p' {} \;| sort -u > code_metrics
59
59
@diff -u0 code_metrics documented_metrics || (echo "ERROR: Metrics with - are present in code but missing in documentation, metrics with + are documented but not found in code.";exit 1)
60
60
@echo OK
61
61
@rm -f code_metrics documented_metrics
62
62
@echo "- Checking for orphan documentation files"
63
-
@cd docs;fordocin*.md;doif [ "$$doc"!="README.md" ] &&! grep -q "$$doc"*.md;thenecho"ERROR: No link to documentation file $${doc} detected";exit 1;fi;done
63
+
@cd docs;fordocin$$(find metrics/* -name '*.md'| sed 's/.*\///');doif [ "$$doc"!="README.md" ] &&! grep -q "$$doc"*.md;thenecho"ERROR: No link to documentation file $${doc} detected";exit 1;fi;done
0 commit comments