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

adjust helmsetup.md (#186) #187

Merged
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
8 changes: 4 additions & 4 deletions HelmSetup.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ The secret name needs to be the same as the value `option.connectionSecretName`

Yes, the devlake helm chart supports using an external Grafana. You can set the following values while installing from helm:

- `grafana.useExternal`: this should be `true`
- `grafana.externalUrl`: use your Grafana's URL, e.g. `https://grafana.example.com`
- `grafana.enabled`: this should be `false`
- `grafana.external.url`: use your Grafana's URL, e.g. `https://grafana.example.com`

Here is the example:

Expand All @@ -253,8 +253,8 @@ helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart
helm repo update
ENCRYPTION_SECRET=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | head -n 1)
helm install devlake devlake/devlake \
--set grafana.useExternal=true \
--set grafana.externalUrl=https://grafana.example.com
--set grafana.enabled=false \
--set grafana.external.url=https://grafana.example.com
--set lake.encryptionSecret.secret=$ENCRYPTION_SECRET

```
Expand Down