@@ -18,27 +18,27 @@ The workflow of Argo CD Image Updater can be described as follows:
18
18
annotation holds a list of image names that should be updated, and is a
19
19
mandatory annotation for Argo CD Image Updater to indicate it should
20
20
process this ` Application ` . Read more about the syntax expected in this
21
- annotation's value in the [ marking images for update] ( #TODO )
21
+ annotation's value in the [ marking images for update] ( ../configuration/images.md )
22
22
section in this doc.
23
23
24
24
* For each image found in the list, Argo CD Image Updater will first check
25
25
if this image is actually deployed with the application. It does a strict
26
26
check for the complete image name, including the registry the image is
27
27
pulled from. For example, ` docker.io/some/image ` and ` quay.io/some/image ` ,
28
28
while both referring to ` some/image ` , are not considered equal. This strict
29
- behavior can be relaxed, however. See [ forcing image updates] ( #TODO ) for
29
+ behavior can be relaxed, however. See [ forcing image updates] ( ../configuration/images.md#forcing-image-updates ) for
30
30
further explanation.
31
31
32
32
* If Argo CD Image Updater considers an image from the list eligible for an
33
33
update check, it will connect the corresponding container registry to see
34
34
if there is a newer version of the image according to the
35
- [ update strategy] ( ../basics /update-strategies.md )
35
+ [ update strategy] ( ./update-strategies.md )
36
36
and other constraints that may have been configured for the image (e.g.
37
37
a list of tags that are allowed to consider).
38
38
39
39
* If a newer version of an image was found, Argo CD Image Updater will try
40
40
to update the image according to the configured
41
- [ update method] ( ../basics /update-methods.md ) . Please note that Argo CD Image Updater will
41
+ [ update method] ( ./update-methods.md ) . Please note that Argo CD Image Updater will
42
42
never update your manifests, instead it re-configures your Application
43
43
sources to use the new image tag, and control is handed over to Argo CD.
44
44
@@ -49,7 +49,7 @@ images (and multi-arch clusters) by being able to inspect images with multiple
49
49
manifests (i.e. a manifest list).
50
50
51
51
Multi-arch currently only is supported for
52
- [ update strategies] ( ../basics /update-strategies.md )
52
+ [ update strategies] ( ./update-strategies.md )
53
53
which fetch image meta-data: ` latest ` and ` digest ` . Multi-arch will be ignored
54
54
for the update strategies that do not fetch meta-data, ` semver ` and ` name ` .
55
55
0 commit comments