Skip to content

perf-sentinel chart v0.9.16

Choose a tag to compare

@github-actions github-actions released this 24 Jul 08:29
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.json now declares a top-level global object. Helm injects global into every subchart's values when a chart is used as a dependency of an umbrella chart, and the schema's root additionalProperties: false rejected it outright with additional properties 'global' not allowed, failing the install for anyone composing this chart into a parent chart, or any values file that sets global by habit. This chart has no subcharts and reads nothing from global, so the key is now merely allowed, not consumed.
  • Chart-only fix, appVersion intentionally unchanged (still 0.9.15) because the underlying binary did not change. This breaks the chart/appVersion lockstep for one release. The next appVersion bump jumps straight to 0.9.17, skipping 0.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.json and the chart version moved.
  • The image tag is unchanged. With appVersion held at 0.9.15, the artifacthub.io/images tag stays ghcr.io/robintra/perf-sentinel:0.9.15 and the pod does not roll.
  • The fix only affects installs that receive a global values 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 sets global was 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.16

Upgrade an existing release:

helm upgrade perf-sentinel oci://ghcr.io/robintra/charts/perf-sentinel --version 0.9.16

Full Changelog: chart-v0.9.15...chart-v0.9.16