From cd674bbb53cceb9a714561580cf1fbec72b562bc Mon Sep 17 00:00:00 2001 From: Oliver Walsh Date: Wed, 4 Jun 2025 17:31:23 +0100 Subject: [PATCH] Document helm operator dryrunOption Signed-off-by: Oliver Walsh --- .../en/docs/building-operators/helm/reference/watches.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/content/en/docs/building-operators/helm/reference/watches.md b/website/content/en/docs/building-operators/helm/reference/watches.md index 7666afc90f9..f3a7f416a5d 100644 --- a/website/content/en/docs/building-operators/helm/reference/watches.md +++ b/website/content/en/docs/building-operators/helm/reference/watches.md @@ -20,6 +20,7 @@ The follow tables describes the fields in an entry in `watches.yaml`: | watchDependentResources | Enable watching resources that are created by helm (default: `true`). | | overrideValues | Values to be used for overriding Helm chart's defaults. For additional information see the [reference doc][override-values]. | | selector | The conditions that a resource's labels must satisfy in order to get reconciled. For additional information see [labels and selectors documentation][label-selector-doc]. | +| dryRunOption | The helm dry-run method to use when comparing manifests. Set to `server` to ensure `lookup()` functions are evaluated (default: `client/none`) | For reference, here is an example of a simple `watches.yaml` file: @@ -36,6 +37,7 @@ For reference, here is an example of a simple `watches.yaml` file: selector: matchExpressions: - {key: testLabel, operator: Exists, values: []} + dryRunOption: server ``` [override-values]: /docs/building-operators/helm/reference/advanced_features/override_values/