Table of Contents

How to manually install Grafana Plugins into the Kubernetes Helm Chart Pods

Summary: This wiki page shows how to manually install Grafana plugins into the Kubernetes Helm Chart Pods.
Date: 10 August 2025

In this wiki page I'll show you the steps to manually install Grafana plugins into the Kubernetes Helm Chart Pods. This includes the following steps:

Helm Values File

We'll be using the helm chart from the Grafana Community Kubernetes Helm Charts repository. The default values file can be found here.

The value file should get updates for persistence and the name of the plugin to allow loading unsigned plugins:

```yaml persistence:

enabled: true

grafana.ini:

plugins:
  allow_loading_unsigned_plugins: timeseries

```

Note that the plugin we're installing is a custom plugin called 'timeseries'.

Use kubectl to copy the plugin files

First of all we need to know the location of the plugin files in the Grafana pod. This is done by checking the Grafana settings for the plugin path:

If you would do the kubectl cp command from a Windows powershell or cmdline you could run into errors with kubectl not recognizing the file path. To solve this, you can change your current directory to where the plugin is located and run the command with just the filename without the path.

Restart the Grafana Pod

After installing the plugin, you need to restart the Grafana pod for the changes to take effect. You can do this by scaling the deployment down to 0 and then back up to 1:

```bash kubectl scale deployment grafana –replicas=0 -n grafananamespace kubectl scale deployment grafana –replicas=1 -n grafananamespace ```