From 654d2347bb790df7ed44dcd676523713b4db1153 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Tue, 10 Dec 2024 17:43:59 +0100 Subject: [PATCH] chore: update documentation Signed-off-by: Hidde Beydals --- docs/docs/35-references/10-promotion-steps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/35-references/10-promotion-steps.md b/docs/docs/35-references/10-promotion-steps.md index 1113aa275..9b58bc842 100644 --- a/docs/docs/35-references/10-promotion-steps.md +++ b/docs/docs/35-references/10-promotion-steps.md @@ -312,7 +312,7 @@ to executing `kustomize edit set image`. This step is commonly followed by a | Name | Type | Required | Description | |------|------|----------|-------------| | `path` | `string` | Y | Path to a directory containing a `kustomization.yaml` file. This path is relative to the temporary workspace that Kargo provisions for use by the promotion process. | -| `images` | `[]object` | Y | The details of changes to be applied to the `kustomization.yaml` file. At least one must be specified. | +| `images` | `[]object` | N | The details of changes to be applied to the `kustomization.yaml` file. When left unspecified, all images from the Freight collection will be set in the Kustomization file. Unless there is a ambiguous image name (for example, due to two Warehouses subscribing to the same repository), which requires manual configuration. | | `images[].image` | `string` | Y | Name/URL of the image being updated. | | `images[].tag` | `string` | N | A tag naming a specific revision of `image`. Mutually exclusive with `digest` and `useDigest=true`. If none of these are specified, the tag specified by a piece of Freight referencing `image` will be used as the value of this field. | | `images[].digest` | `string` | N | A digest naming a specific revision of `image`. Mutually exclusive with `tag` and `useDigest=true`. If none of these are specified, the tag specified by a piece of Freight referencing `image` will be used as the value of `tag`. |