From e342d53db1e10d9587804600bf91c58822be730e Mon Sep 17 00:00:00 2001 From: Jim Ryan Date: Tue, 25 Jun 2024 15:14:58 +0100 Subject: [PATCH] change telemetry to telemetryReporting in docs (#5855) change telemetry to telemetryReporting --- 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 ``` ---