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
BENCHSTAT_OUTPUT_FILE=result.txt make test-benchmark-compare
168
+
- run: |
169
+
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
170
+
cat result.txt >> "$GITHUB_STEP_SUMMARY"
171
+
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
172
+
cat <<EOL >> "$GITHUB_STEP_SUMMARY"
173
+
<hr />
174
+
The table shows the median and 95% confidence interval (CI) summaries for each benchmark comparing the HEAD and the BASE, and an A/B comparison under "vs base". The last column shows the statistical p-value with ten runs (n=10).
175
+
The last row has the Geometric Mean (geomean) for the given rows in the table.
176
+
Refer to <a href="https://pkg.go.dev/golang.org/x/perf/cmd/benchstat">benchstat's documentation</a> for more help.
177
+
EOL
168
178
169
179
ci-build-kube-state-metrics:
170
180
name: ci-build-kube-state-metrics
171
181
runs-on: ubuntu-latest
172
182
steps:
173
183
- name: Check out code into the Go module directory
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,41 @@
1
+
## v2.14.0 / 2024-11-08
2
+
3
+
### Note
4
+
5
+
* This release builds with Golang `v1.23.3`
6
+
* This release builds with `k8s.io/client-go`: `v0.31.2`
7
+
* This release removes `kube_endpoint_address_not_ready` and `kube_endpoint_address_available` which have been deprecated in 2022. Please use `kube_endpoint_address`as a replacement.
8
+
9
+
*[BUGFIX] Use --track-unscheduled-pods to select unscheduled pods in Daemonset sharding by @CatherineF-dev in <https://github.com/kubernetes/kube-state-metrics/pull/2388>
10
+
*[BUGFIX] Install tools so VERSION gets set by @mrueg in <https://github.com/kubernetes/kube-state-metrics/pull/2456>
11
+
*[BUGFIX] Syntax errors in kube-state-metrics.libsonnet by @jeffmccune in <https://github.com/kubernetes/kube-state-metrics/pull/2454>
12
+
*[BUGFIX] Set kube_job_status_failed metric even when there are no job.Status.Conditions present by @richabanker in <https://github.com/kubernetes/kube-state-metrics/pull/2485>
13
+
*[BUGFIX] de-duplication of custom resource metrics by @bartlettc22 in <https://github.com/kubernetes/kube-state-metrics/pull/2502>
14
+
*[BUGFIX] Configure sharding every time MetricsHandler.Run runs by @wallee94 in <https://github.com/kubernetes/kube-state-metrics/pull/2478>
15
+
*[BUGFIX] Panic in `util.GVRFromType` for core objects by @L3n41c in <https://github.com/kubernetes/kube-state-metrics/pull/2535>
16
+
*[BUGFIX] Big memory value overflow by @leiwingqueen in <https://github.com/kubernetes/kube-state-metrics/pull/2540>
17
+
*[BUGFIX] Expose empty labels by @mrueg in <https://github.com/kubernetes/kube-state-metrics/pull/2539>
18
+
*[BUGFIX] CustomResourceMetrics: Convert status condition Unknown to a valid value by @Haleygo in <https://github.com/kubernetes/kube-state-metrics/pull/2536>
19
+
*[CHANGE] Remove deprecated endpoint address metric by @mrueg in <https://github.com/kubernetes/kube-state-metrics/pull/2527>
20
+
*[FEATURE] Add new metric kube_job_status_suspended by @Indresh2410 in <https://github.com/kubernetes/kube-state-metrics/pull/2542>
21
+
*[FEATURE] Move endpoint ports into address metric by @mrueg in <https://github.com/kubernetes/kube-state-metrics/pull/2503>
22
+
*[ENHANCEMENT] Use concurrent map when storing metrics by @rarruda in <https://github.com/kubernetes/kube-state-metrics/pull/2510>
23
+
24
+
## v2.13.0 / 2024-07-18
25
+
26
+
### Note
27
+
28
+
* This release builds with Golang `v1.22.5`.
29
+
* This release builds with `k8s.io/client-go`: `v0.30.3`.
30
+
* This release adds read and write timeouts for requests. The defaults might have an impact on scrapes that take a long time.
31
+
32
+
*[BUGFIX] Pod autosharding: transition from labelselector to fieldselector by @pkoutsovasilis in <https://github.com/kubernetes/kube-state-metrics/pull/2347>
33
+
*[ENHANCEMENT] Add automatic detection of memory limits by @SuperQ in <https://github.com/kubernetes/kube-state-metrics/pull/2447>
34
+
*[FEATURE] Add `readyz` endpoint by @rexagod in <https://github.com/kubernetes/kube-state-metrics/pull/2442>
35
+
*[FEATURE] Add `livez` endpoint by @rexagod in <https://github.com/kubernetes/kube-state-metrics/pull/2418>
36
+
*[FEATURE] Add kube_persistentvolume_volume_mode metric by @ricardoapl in <https://github.com/kubernetes/kube-state-metrics/pull/2370>
37
+
*[FEATURE] Add read and write timeouts by @Pokom in <https://github.com/kubernetes/kube-state-metrics/pull/2412>
0 commit comments