-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start to document known configuration parameters for common image rep…
…ositories (#208)
- Loading branch information
1 parent
f438f1a
commit 29427b2
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Image Glossary | ||
|
||
This document serves as a reference for annotations required to be applied to various resources for the correct versions to be reported: | ||
|
||
## Images / Annotations | ||
|
||
### GKE Managed Images (kube-proxy, etc..) | ||
|
||
| Annotation | Reason | | ||
|-| | ||
| `use-metadata.version-checker.io/kube-proxy="true"` | This is because many GKE images are suffixed as `v.1.26.5-gke.2700` for example. By Default, version-checker removes tags with metadata (`-XXXX`) as these traditionally relate to an Alpha or pre-release image. | | ||
|
||
### Grafana: docker.io/grafana/grafana | ||
|
||
Grafana has a few images, when version-checker looks up the version, it inadvertently records these tags as latest, enforcing a strict Semantic Version (without a prefix) prevents this. | ||
|
||
|Annotation | | ||
|-| | ||
|`match-regex.version-checker.io/grafana='(\d+)\.(\d+)\.(\d+)'` | | ||
|
||
### Cert-Manager | ||
|
||
This is required as there's an image `608111629` which is detected as the latest, as Semver, this would equate to `608111629.0.0`. | ||
|
||
| Annotation | | ||
|-| | ||
| `match-regex.version-checker.io/cert-manager='v(\d+)\.(\d+)\.(\d+)` | |