From 5c554d3d5ca7f2c77cba058194e6703a4e37d95e Mon Sep 17 00:00:00 2001 From: nginx-bot <68849795+nginx-bot@users.noreply.github.com> Date: Tue, 25 Jun 2024 09:33:02 -0700 Subject: [PATCH] [cherry-pick] change telemetry to telemetryReporting in docs (#5856) --- docs/content/overview/product-telemetry.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/overview/product-telemetry.md b/docs/content/overview/product-telemetry.md index 28489cfeec..39c92802c2 100644 --- a/docs/content/overview/product-telemetry.md +++ b/docs/content/overview/product-telemetry.md @@ -66,12 +66,12 @@ Product telemetry can be disabled when installing NGINX Ingress Controller. ### Helm -When installing or upgrading NGINX Ingress Controller with Helm, set the `controller.telemetry.enable` option to `false`. +When installing or upgrading NGINX Ingress Controller with Helm, set the `controller.telemetryReporting.enable` option to `false`. This can be set directly in the `values.yaml` file, or using the `--set` option ```shell -helm upgrade --install ... --set controller.telemetry.enable=false +helm upgrade --install ... --set controller.telemetryReporting.enable=false ``` ---