From b692d4ef29c5d901c182cef47f0926c7ca8853f0 Mon Sep 17 00:00:00 2001 From: Mariam Fahmy Date: Mon, 28 Oct 2024 02:16:55 +0300 Subject: [PATCH] docs: add --dumpPatches flag (#1386) Signed-off-by: Mariam Fahmy --- content/en/docs/installation/customization.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/en/docs/installation/customization.md b/content/en/docs/installation/customization.md index a610105d6..aae4919ee 100644 --- a/content/en/docs/installation/customization.md +++ b/content/en/docs/installation/customization.md @@ -365,10 +365,11 @@ The following flags can be used to control the advanced behavior of the various | `cleanupServerPort` (C) | 9443 | Defines the port used by the cleanup server. Usually changed in tandem with `webhookServerPort`.| | `clientRateLimitBurst` (ABCR) | 300 | Configures the maximum burst for throttling. Uses the client default if zero. | | `clientRateLimitQPS` (ABCR) | 300 | Configures the maximum QPS to the API server from Kyverno. Uses the client default if zero. | -| `eventsRateLimitBurst` (ABCR) | 2000 | Configures the maximum burst for throttling for events. Uses the client default if zero. | -| `eventsRateLimitQPS` (ABCR) | 1000 | Configures the maximum QPS to the API server from Kyverno for events. Uses the client default if zero. | | `disableMetrics` (ABCR) | false | Specifies whether to enable exposing the metrics. | | `dumpPayload` (AC) | false | Toggles debug mode. When debug mode is enabled, the full AdmissionReview payload is logged. Additionally, resources of kind Secret are redacted. Should only be used in policy development or troubleshooting scenarios, not left perpetually enabled. | +| `dumpPatches` (A) | false | Toggles debug mode. When debug mode is enabled, the full patch payload is logged | +| `eventsRateLimitBurst` (ABCR) | 2000 | Configures the maximum burst for throttling for events. Uses the client default if zero. | +| `eventsRateLimitQPS` (ABCR) | 1000 | Configures the maximum QPS to the API server from Kyverno for events. Uses the client default if zero. | | `enableConfigMapCaching` (ABR) | true | Enables the ConfigMap caching feature. | | `enableDeferredLoading` (A) | true | Enables deferred (lazy) loading of variables (1.10.1+). Set to `false` to disable deferred loading of variables which was the default behavior in versions < 1.10.0. | | `enablePolicyException` (ABR) | true | Set to `true` to enable the [PolicyException capability](../writing-policies/exceptions.md). |