-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# PromLens Chart | ||
|
||
This chart installs [PromLens](https://promlens.com/) from [PromLabs](https://promlabs.com/). | ||
|
||
PromLens is a tool that makes learning and using PromQL easier and more productive. It integrates a visual query builder with explanation and visualization features. | ||
|
||
## Helm Chart | ||
|
||
This is an initial release, based on the Helm chart we are using to deploy the tool internally. Currently, there are muliple features of PromLens that this Chart doesn't provide. If something is missing, feel free to open and issue or submit a Pull Request. | ||
|
||
### How To Install | ||
|
||
Simply add this Chart repository to your Helm: | ||
|
||
```sh | ||
➜ helm repo add ricardo https://ricardo-ch.github.io/helm-charts/ | ||
"ricardo" has been added to your repositories | ||
``` | ||
|
||
## Configuration | ||
|
||
|Name|Description| Default Value| | ||
|----|-----------|--------------| | ||
| image | PromLens image repository and name | 'promlabs/promlens' | | ||
| version | PromLens image tag | latest | | ||
| replicas | Number of replicas | 1 | | ||
| license | PromLens License (string) | | | ||
| grafana_url | Grafana URL | | | ||
| grafana_api_key | Grafana API Key | | | ||
| gcs_sa | Google Storage Account | | | ||
| shared_links_bucket_name | Bucket name for shared links | 'promlens' | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Number of replicas | ||
# -- Number of replicas | ||
replicas: 1 | ||
# PromLens License | ||
# -- PromLens License | ||
license: "" | ||
# Grafana URL | ||
# -- Grafana URL | ||
grafana_url: "" | ||
# Grafana API Key, see https://grafana.com/docs/grafana/latest/http_api/auth/ | ||
# -- Grafana API Key, see https://grafana.com/docs/grafana/latest/http_api/auth/ | ||
grafana_api_key: "" | ||
# Google Cloud Storage Account | ||
# -- Google Cloud Storage Account | ||
gcs_sa: "" | ||
# Bucket Name in Storage Account | ||
# -- Bucket Name in Storage Account | ||
shared_links_bucket_name: promlens | ||
# PromLens Conatiner Image | ||
# -- PromLens Conatiner Image | ||
image: promlabs/promlens | ||
# PromLens Container Image Version | ||
# -- PromLens Container Image Version | ||
version: latest |