dosubot[bot] commented on issue #8013: URL: https://github.com/apache/incubator-devlake/issues/8013#issuecomment-2336515578
<!-- Greeting --> Hello, @da-head0! I'm here to assist you with any bugs, questions, or contributions. Let's work together to solve this issue. <!-- Answer --> The dashboard won't show in your external Grafana because you need to set the `grafana.enabled` value to `false` and provide the external Grafana URL using the `grafana.external.url` parameter in your Helm install command. Here is the correct configuration: ```shell 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.enabled=false \ --set grafana.external.url=https://grafana.dev.company.io \ --set lake.encryptionSecret.secret=$ENCRYPTION_SECRET ``` Make sure to replace `https://grafana.dev.company.io` with the actual URL of your external Grafana instance. For more detailed instructions, you can refer to the [Apache DevLake Helm Setup documentation](https://github.com/apache/incubator-devlake-helm-chart). Additionally, if you are using minikube, you might need to forward the port for Grafana: ```shell kubectl port-forward service/devlake-grafana 30091:3000 ``` Then you can visit Grafana by URL `http://YOUR-NODE-IP:30091` <sup>[[1]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.21/GettingStarted/HelmSetup.md)</sup><sup>[[2]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.20/GettingStarted/HelmSetup.md)</sup><sup>[[3]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.19/GettingStarted/HelmSetup.md)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@devlake.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org