This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch release-v0.18
in repository
https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git
The following commit(s) were added to refs/heads/release-v0.18 by this push:
new 8a46207 adjust helmsetup.md (#186) (#187)
8a46207 is described below
commit 8a4620743a603a4e3cbba0d693e24f3decb99030
Author: ZhangNing10 <[email protected]>
AuthorDate: Sun Oct 8 11:50:39 2023 +0800
adjust helmsetup.md (#186) (#187)
---
HelmSetup.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/HelmSetup.md b/HelmSetup.md
index a1306bc..d16dc66 100644
--- a/HelmSetup.md
+++ b/HelmSetup.md
@@ -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:
@@ -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
```