From 247d2881d2d37a9101512a369f4866dc0a652d0c Mon Sep 17 00:00:00 2001 From: Cheng Fang Date: Wed, 4 Sep 2024 16:53:01 -0400 Subject: [PATCH] docs: use the correct annotation name platforms instead of platform; fix link to registries.md Signed-off-by: Cheng Fang --- docs/configuration/images.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration/images.md b/docs/configuration/images.md index 2804ef30..cd0d0aa6 100644 --- a/docs/configuration/images.md +++ b/docs/configuration/images.md @@ -227,7 +227,7 @@ The correct image to execute will be chosen by Kubernetes. There are generally two ways on how to specify pull secrets for Argo CD Image Updater to use. Either you configure a secret reference globally for the -container registry (as described [here](../registries/)), or you can specify +container registry (as described [here](registries.md)), or you can specify the pull secret to use for a given image using the annotation ```yaml @@ -456,7 +456,7 @@ must be prefixed with `argocd-image-updater.argoproj.io/`. |`.allow-tags`|*any*|A function to match tag names from the registry against to be considered for update| |`.ignore-tags`|*none*|A comma-separated list of glob patterns that when matched, ignore a certain tag from the registry| |`.pull-secret`|*none*|A reference to a secret to be used as registry credentials for this image| -|`.platform`|*none*|Only update to images for given platform(s). Comma-separated list, e.g. `linux/amd64,linux/arm64`| +|`.platforms`|*none*|Only update to images for given platform(s). Comma-separated list, e.g. `linux/amd64,linux/arm64`| |`.helm.image-spec`|*none*|Name of the Helm parameter to specify the canonical name of the image, i.e. holds `image/name:1.0`. If this is set, other Helm parameter-related options will be ignored.| |`.helm.image-name`|`image.name`|Name of the Helm parameter used for specifying the image name, i.e. holds `image/name`| |`.helm.image-tag`|`image.tag`|Name of the Helm parameter used for specifying the image tag, i.e. holds `1.0`|