perf-sentinel chart v0.9.16
What's new in chart-v0.9.16
This chart release is a schema-only fix and carries no template change. It corrects values.schema.json so the chart installs when it receives a global values key. appVersion is intentionally held at the current daemon release 0.9.15 because the binary did not change, which breaks the chart/appVersion lockstep for this one release. The chart version advances to 0.9.16 on its own.
Fixed
values.schema.jsonnow declares a top-levelglobalobject. Helm injectsglobalinto every subchart's values when a chart is used as a dependency of an umbrella chart, and the schema's rootadditionalProperties: falserejected it outright withadditional properties 'global' not allowed, failing the install for anyone composing this chart into a parent chart, or any values file that setsglobalby habit. This chart has no subcharts and reads nothing fromglobal, so the key is now merely allowed, not consumed.- Chart-only fix,
appVersionintentionally unchanged (still0.9.15) because the underlying binary did not change. This breaks the chart/appVersionlockstep for one release. The nextappVersionbump jumps straight to0.9.17, skipping0.9.16, to realign the two version numbers going forward.
Behavior
- The rendered manifest set is unchanged. No template changed in this release, no default value changes, and no configuration key changes its meaning. Only
values.schema.jsonand the chartversionmoved. - The image tag is unchanged. With
appVersionheld at0.9.15, theartifacthub.io/imagestag staysghcr.io/robintra/perf-sentinel:0.9.15and the pod does not roll. - The fix only affects installs that receive a
globalvalues key. Helm injects it under an umbrella chart, and some operators set it by habit, both hit the old schema rejection. A standalone install that never setsglobalwas unaffected either way. No route disappears, no metric loses a label value, and acknowledgment signatures do not reset.
Install
The chart is published as an OCI artifact on GHCR, install it directly with no helm repo add step:
helm install perf-sentinel oci://ghcr.io/robintra/charts/perf-sentinel --version 0.9.16Upgrade an existing release:
helm upgrade perf-sentinel oci://ghcr.io/robintra/charts/perf-sentinel --version 0.9.16Full Changelog: chart-v0.9.15...chart-v0.9.16