Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to make it easier for noobs to follow step by step #8738

Merged
merged 2 commits into from
Jul 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user-guide/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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:
```
Expand Down