From 64871454c21b1b0ac2fee9bca82cc4cd18c2319c Mon Sep 17 00:00:00 2001 From: Connor Hindley Date: Tue, 11 Feb 2025 16:41:01 -0600 Subject: [PATCH] add waitRetries to docs Signed-off-by: Connor Hindley --- docs/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/index.md b/docs/index.md index 88c819b7..22bf5fbe 100644 --- a/docs/index.md +++ b/docs/index.md @@ -195,6 +195,8 @@ helmDefaults: keyring: path/to/keyring.gpg # wait for k8s resources via --wait. (default false) wait: true + # if set and --wait enabled, will retry any failed check on resource state subject to the specified number of retries (default 0) + waitRetries: 3 # if set and --wait enabled, will wait until all Jobs have been completed before marking the release as successful. It will wait for as long as --timeout (default false, Implemented in Helm3.5) waitForJobs: true # time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks, and waits on pod/pvc/svc/deployment readiness) (default 300) @@ -312,6 +314,7 @@ releases: verify: true keyring: path/to/keyring.gpg wait: true + waitRetries: 3 waitForJobs: true timeout: 60 recreatePods: true