diff options
| author | noah <iamnoah@gmail.com> | 2021-04-13 20:10:00 +1200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-13 10:10:00 +0200 |
| commit | 02577714e1fb80aadee84ac23ba1f68ce4440d22 (patch) | |
| tree | dcae86ae29fdd454bff66b648ebc861a70f52db7 /docs | |
| parent | f1cc8e4542b0531f66fc5546f7467833b1d08ebe (diff) | |
feat: allow image updates to be forced if container not present #181 (#189)
* allow image updates to be forced if container not present #181
* explain new code, refactor image parsing and test
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/configuration/images.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/configuration/images.md b/docs/configuration/images.md index 62b0b82..f0990e2 100644 --- a/docs/configuration/images.md +++ b/docs/configuration/images.md @@ -61,6 +61,21 @@ of the [Semver library](https://github.com/Masterminds/semver) we're using. [filtering tags](#filtering-tags) below. + +### Forcing Image Updates + +By default, Image Updater will only update an image that is actually used in your Application +(i.e., is it exported in the Status of your ArgoCD Application.) + +To support custom resources and things like PodTemplates that don't actually create a container, +you may force an update: + +```yaml +argocd-image-updater.argoproj.io/image-list: myalias=some/image +argocd-image-updater.argoproj.io/myalias.force-update: "true" +``` + + ## Assigning aliases to images It's possible (and sometimes necessary) to assign an alias name to any given |
