Breaking changes!
In the release v0.7.0, the semantics of metrics naming were changed.
The motivation for this is to be able to query all image availability metrics with a single query without using cumbersome name regexps.
Previous | New |
---|---|
k8s_image_availability_exporter_deployment_available{deployment="nginx"} | k8s_image_availability_exporter_available{kind="deployment", name="nginx"} |
k8s_image_availability_exporter_statefulset_available{statefulset="mysql"} | k8s_image_availability_exporter_available{kind="statefulset", name="mysql"} |
k8s_image_availability_exporter_daemonset_available{daemonset="flannel"} | k8s_image_availability_exporter_available{kind="daemonset", name="flannel"} |
k8s_image_availability_exporter_cronjob_available{crontjob="migration"} | k8s_image_availability_exporter_available{kind="cronjob", name="migration"} |
What's Changed
Enhancements 🚀
- Change app version to v0.6.1 in the chart by @nabokihms in #109
- Add volume mounts to the chart by @nabokihms in #111
- Add option to force image check for disabled/suspended workloads by @verdel in #75
- Use labels instead of separate metrics by @tony2001 in #127
Bug Fixes 🐛
Dependency Updates ⬆️
- Bump actions/checkout from 2 to 4 by @dependabot in #112
- Bump actions/setup-python from 4 to 5 by @dependabot in #113
- Bump helm/chart-releaser-action from 1.3.0 to 1.6.0 by @dependabot in #116
- Bump helm/chart-testing-action from 2.3.1 to 2.6.1 by @dependabot in #115
- Bump azure/setup-helm from 1 to 3 by @dependabot in #114
- Bump helm/kind-action from 1.5.0 to 1.8.0 by @dependabot in #117
- Bump docker/metadata-action from 5.4.0 to 5.5.0 by @dependabot in #118
- Bump golang from 1.21.5-bullseye to 1.21.6-bullseye by @dependabot in #119
- Bump k8s.io/apimachinery from 0.29.0 to 0.29.1 by @dependabot in #124
- Bump k8s.io/sample-controller from 0.29.0 to 0.29.1 by @dependabot in #123
- Bump sigs.k8s.io/controller-runtime from 0.16.3 to 0.17.0 by @dependabot in #120
- Bump codecov/codecov-action from 3.1.4 to 3.1.5 by @dependabot in #125
- Bump github.com/google/go-containerregistry from 0.17.0 to 0.18.0 by @dependabot in #126
Other Changes
- Fix Alert in README.md by @nabokihms in #129
New Contributors
Full Changelog: v0.6.1...v0.7.0