-
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
7 changed files
with
57 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
HELM_DOCS_VERSION="0.11.0" | ||
HELM_DOCS_VERSION="1.3.0" | ||
|
||
# install helm-docs | ||
curl --silent --show-error --fail --location --output /tmp/helm-docs.tar.gz https://github.com/norwoodj/helm-docs/releases/download/v"${HELM_DOCS_VERSION}"/helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz | ||
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 |
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,7 +1,8 @@ | ||
apiVersion: v2 | ||
name: promlens | ||
version: 0.1.4 | ||
version: 0.2.0 | ||
description: This Chart installs and configures PromLens | ||
sources: ["https://github.com/ricardo-ch/helm-charts/tree/main/charts/promlens"] | ||
maintainers: | ||
- name: ricardo-ch | ||
email: [email protected] |
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# PromLens | ||
|
||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}![Release Status](https://github.com/ricardo-ch/helm-charts/workflows/Release%20Charts/badge.svg) | ||
|
||
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 multiple 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 Helm: | ||
|
||
```sh | ||
➜ helm repo add ricardo https://ricardo-ch.github.io/helm-charts/ | ||
"ricardo" has been added to your repositories | ||
``` | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} |
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
# -- Number of replicas | ||
replicas: 1 | ||
# -- PromLens License | ||
license: "" | ||
# -- Grafana URL | ||
grafana_url: "" | ||
# -- Grafana API Key, see https://grafana.com/docs/grafana/latest/http_api/auth/ | ||
grafana_api_key: "" | ||
# -- Google Cloud Storage Account | ||
gcs_sa: "" | ||
# -- Bucket Name in Storage Account | ||
shared_links_bucket_name: promlens | ||
# -- PromLens Conatiner Image | ||
image: promlabs/promlens | ||
# -- PromLens Container Image Version | ||
version: latest | ||
deployment: | ||
# -- Number of replicas | ||
replicas: 1 | ||
# -- PromLens Conatiner Image | ||
image: promlabs/promlens | ||
# -- PromLens Container Image Version | ||
version: latest | ||
config: | ||
# -- PromLens License | ||
license: "" | ||
# -- Grafana URL | ||
grafana_url: "" | ||
# -- Grafana API Key, see https://grafana.com/docs/grafana/latest/http_api/auth/ | ||
grafana_api_key: "" | ||
# -- Google Cloud Storage Account | ||
gcs_sa: "" | ||
# -- Bucket Name in Storage Account | ||
shared_links_bucket_name: promlens |