Skip to content

Commit

Permalink
Update update.md: Fix broken links (argoproj-labs#758)
Browse files Browse the repository at this point in the history
Signed-off-by: Ileriayo Adebiyi <[email protected]>
  • Loading branch information
Ileriayo authored and sribiere-jellysmack committed Aug 13, 2024
1 parent a23ae20 commit 9d6626e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/basics/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@ The workflow of Argo CD Image Updater can be described as follows:
annotation holds a list of image names that should be updated, and is a
mandatory annotation for Argo CD Image Updater to indicate it should
process this `Application`. Read more about the syntax expected in this
annotation's value in the [marking images for update](#TODO)
annotation's value in the [marking images for update](../configuration/images.md)
section in this doc.

* For each image found in the list, Argo CD Image Updater will first check
if this image is actually deployed with the application. It does a strict
check for the complete image name, including the registry the image is
pulled from. For example, `docker.io/some/image` and `quay.io/some/image`,
while both referring to `some/image`, are not considered equal. This strict
behavior can be relaxed, however. See [forcing image updates](#TODO) for
behavior can be relaxed, however. See [forcing image updates](../configuration/images.md#forcing-image-updates) for
further explanation.

* If Argo CD Image Updater considers an image from the list eligible for an
update check, it will connect the corresponding container registry to see
if there is a newer version of the image according to the
[update strategy](../basics/update-strategies.md)
[update strategy](./update-strategies.md)
and other constraints that may have been configured for the image (e.g.
a list of tags that are allowed to consider).

* If a newer version of an image was found, Argo CD Image Updater will try
to update the image according to the configured
[update method](../basics/update-methods.md). Please note that Argo CD Image Updater will
[update method](./update-methods.md). Please note that Argo CD Image Updater will
never update your manifests, instead it re-configures your Application
sources to use the new image tag, and control is handed over to Argo CD.

Expand All @@ -49,7 +49,7 @@ images (and multi-arch clusters) by being able to inspect images with multiple
manifests (i.e. a manifest list).

Multi-arch currently only is supported for
[update strategies](../basics/update-strategies.md)
[update strategies](./update-strategies.md)
which fetch image meta-data: `latest` and `digest`. Multi-arch will be ignored
for the update strategies that do not fetch meta-data, `semver` and `name`.

Expand Down

0 comments on commit 9d6626e

Please sign in to comment.