From 4aecb02be2be4844c0d25fc17109e1ecb4edfd0e Mon Sep 17 00:00:00 2001 From: Affan Amir Mir <54717435+Affanmir@users.noreply.github.com> Date: Thu, 22 Aug 2024 19:06:36 +0500 Subject: [PATCH] Update index.md with instructions to install plugins for helm (#92180) Co-authored-by: Jack Baldry --- .../administration/plugin-management/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/sources/administration/plugin-management/index.md b/docs/sources/administration/plugin-management/index.md index 285292ea5a3..38d155c65c1 100644 --- a/docs/sources/administration/plugin-management/index.md +++ b/docs/sources/administration/plugin-management/index.md @@ -149,6 +149,19 @@ Grafana Cloud handles the plugin installation automatically. If you're logged in to Grafana Cloud when you add a plugin, log out and then log back in again to use the new plugin. +### Install plugins using the Grafana Helm chart + +With the Grafana Helm chart, add the plugins you want to install as a list using the `plugins` field in the your values file. For more information about the configuration, refer to [the Helm chart configuration reference](https://github.com/grafana/helm-charts/tree/main/charts/grafana#configuration). + +The following YAML snippet installs v1.9.0 of the Grafana OnCall App plugin and the Redis data source plugin. +You must incorporate this snippet within your Helm values file. + +```yaml +plugins: + - https://grafana.com/api/plugins/grafana-oncall-app/versions/v1.9.0/download;grafana-oncall-app + - redis-datasource +``` + ### Install plugin on local Grafana Follow the instructions on the **Install** tab. You can either install the plugin with a Grafana CLI command or by downloading and uncompressing a zip file into the Grafana plugins directory. We recommend using Grafana CLI in most instances. The zip option is available if your Grafana server doesn't have access to the internet.