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

fix links/variable names in helm documentation #310

Merged
merged 1 commit into from
Jul 2, 2024
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
6 changes: 3 additions & 3 deletions charts/celery-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Prometheus exporter for Celery
Add the helm repository:

```bash
helm repo add danihodovic https://danihodovic.github.io/helm-charts
helm repo add danihodovic https://danihodovic.github.io/celery-exporter/
jthurner marked this conversation as resolved.
Show resolved Hide resolved
```

Install the chart:
Expand All @@ -21,12 +21,12 @@ helm install celery-exporter danihodovic/celery-exporter
```


You'll need to set the enviroment variable `CELERY_BROKER_URL` to the broker url of your celery instance.
You'll need to set the enviroment variable `CE_BROKER_URL` to the broker url of your celery instance.

For example:

```bash
helm install celery-exporter danihodovic/celery-exporter --set env[0].name=CELERY_BROKER_URL,env[0].value=redis://redis:6379/0
helm install celery-exporter danihodovic/celery-exporter --set env[0].name=CE_BROKER_URL,env[0].value=redis://redis:6379/0
```

## Maintainers
Expand Down
Loading