From 23cc9006903932bd71018fff01968a8d8bcb8eaa Mon Sep 17 00:00:00 2001 From: Taylor Monacelli Date: Sun, 3 Jul 2022 10:35:21 -0700 Subject: [PATCH] Update docs to make it easier for noobs to follow step by step (#8738) * Change helm release name in docs Following step by step instructions in readme I ran into error: Error: release: not found And realized the commandline was differnent from description. Let change description to match commandline? * Fix verb tense in docs --- docs/user-guide/monitoring.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/monitoring.md b/docs/user-guide/monitoring.md index 048607cd5..c59e976e7 100644 --- a/docs/user-guide/monitoring.md +++ b/docs/user-guide/monitoring.md @@ -18,7 +18,7 @@ This tutorial will show you how to install [Prometheus](https://prometheus.io/) 2. controller.podAnnotations."prometheus.io/scrape"="true" 3. controller.podAnnotations."prometheus.io/port"="10254" - - The easiest way to configure the controller for metrics is via helm upgrade. Assuming you have installed the ingress-nginx controller as a helm release named ingress-controller, then you can simply type the command show below : + - The easiest way to configure the controller for metrics is via helm upgrade. Assuming you have installed the ingress-nginx controller as a helm release named ingress-nginx, then you can simply type the command shown below : ``` helm upgrade ingress-nginx ingress-nginx \ --repo https://kubernetes.github.io/ingress-nginx \ @@ -29,7 +29,7 @@ This tutorial will show you how to install [Prometheus](https://prometheus.io/) ``` - You can validate that the controller is configured for metrics by looking at the values of the installed release, like this: ``` - helm get values ingress-controller --namespace ingress-nginx + helm get values ingress-nginx --namespace ingress-nginx ``` - You should be able to see the values shown below: ```