Below are instructions on installing [[Grafana plugins]].
## On [[Kubernetes]]
### Create values file
Create a `grafana-values.yaml` with these values, or add the text below to [[Grafana values file|your existing file]]:
```yaml
## Pass the plugins you want installed as a list.
##
plugins:
# - digrich-bubblechart-panel
# - grafana-clock-panel
- grafana-k6cloud-datasource
```
Add the name of the plugin you want to install under `plugins`.
### [[Installing Grafana on Kubernetes]]
Install Grafana, but with the extra configuration specified in `grafana-values.yaml` above. For example, when [[Installing Grafana on Kubernetes#Add the Grafana Helm Chart|using Helm]], after adding the [[Helm for Kubernetes|Helm]] chart repository, run:
`helm install grafana grafana/grafana -f grafana-values.yaml`
If you've already installed Grafana, try:
`helm upgrade grafana grafana/grafana -f grafana-values.yaml`
If that doesn't work you may have to [[Helm for Kubernetes#Uninstall a component|uninstall Grafana]]:
`helm uninstall grafana`
and then reinstall it with the installation command above.