Skip to content

Releases: jetstack/version-checker

v0.2.0

01 Sep 13:30
aa25c7b
Compare
Choose a tag to compare

This release adds a number of new features, and improves the image checking logic. The main points are:

  • Improves the cache handling of image checks to ensure we don't needlessly call a registry multiple times. #32
  • Log whether we are testing all containers by default or not. #34
  • Add support for Amazon's ECR. #38
  • Add named flags to command help output. #39
  • Add option for overriding the lookup URL of an image. #40
  • Adds support for selfhosted registries such as artifactory. Multiple registries can be configured. #41
  • Adds support for Azure's ACR #42

Contributors 🎉

v0.1.1

20 Aug 18:00
3fc950c
Compare
Choose a tag to compare

This release adds a number of bug fixes and improvements:

  • Properly handle image tags that contain versions and SHAs. Also properly handle pods updating in place, and re-scheduling #20
  • Make determining the client, and looking up the correct host less fragile #16
  • Enable the pkg/version package to be more importable by moving the garbage collector out of func New #18
  • Do not Warn when "Silently" falling back to SHA comparison. #12
  • Allow extra ServiceMonitor labels in the Helm chart #2
  • Various spelling mistakes in the README.md

Contributors 🎉

v0.1.0

17 Aug 09:33
672e522
Compare
Choose a tag to compare

This is the first release of version-checker 🎉

version-checker supports exposing image version metrics from the following registries:

  • docker.io
  • gcr.io
  • quay.io

version-checker also supports the following options for controlling image look-ups and comparisons:

  • pin-major.version-checker.io/my-continer: 4: will pin the major version to
    check to 4 (v4.0.0).

  • pin-minor.version-checker.io/my-continer: 3: will pin the minor version to
    check to 3 (v0.3.0).

  • pin-patch.version-checker.io/my-continer: 23: will pin the patch version to
    check to 23 (v0.0.23).

  • use-metadata.version-checker.io/my-container: "true": will allow to search
    for image tags which contain information after the first part of the semver
    string. For example, this can be pre-releases or build metadata
    (v1.2.4-alpha.0, v1.2.3-debian-r3).

  • use-sha.version-checker.io/my-container: "true": will check against the latest
    SHA tag available. Essentially, the latest image by date. This is silently
    set to true if no image tag, or "latest" image tag is set. Cannot be used with
    any other options.

  • match-regex.version-checker.io/my-container: $v\d+\.\d+\.\d+-debian\.*: is
    used for only comparing against image tags which match the regex set. For
    example, the above annotation will only check against image tags which have
    the form of something like v.1.3.4-debian-r30.
    use-metadata.version-checker.io is not required when this is set. All
    other options are ignored when this is set.


vesion-checker can be installed as either static manifests;

$ cd ./deploy/yaml && kubectl apply -f .

Or through helm;

$ cd ./deploy/charts/version-checker && kubectl create namespace verison-checker
$ helm install version-checker . -n version-checker