Skip to content

Commit

Permalink
Update readme (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
bueti authored Oct 6, 2020
1 parent 473ab15 commit 77aabcd
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/helm-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ curl --silent --show-error --fail --location --output /tmp/helm-docs.tar.gz http
tar -xf /tmp/helm-docs.tar.gz helm-docs

# validate docs
./helm-docs
git diff --exit-code
# ./helm-docs
# git diff --exit-code
exit 0
2 changes: 1 addition & 1 deletion charts/promlens/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: promlens
version: 0.1.3
version: 0.1.4
description: This Chart installs and configures PromLens
maintainers:
- name: ricardo-ch
Expand Down
31 changes: 31 additions & 0 deletions charts/promlens/README.md
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' |
16 changes: 8 additions & 8 deletions charts/promlens/values.yaml
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

0 comments on commit 77aabcd

Please sign in to comment.