How to Upgrade Specific Version Plugin in Grafana?

Hi,

I am using grafana 9.2.3 in docker. I would like to upgrade business text plugin from version 2.0 to 4.5.0. What is the command to upgrade the plugin to a specific version?

It depends how you installed that plugin.

Thank you for your response,

Previously, I have installed that plugin using the below command and executed inside the docker container

grafana-cli plugins install marcusolsson-dynamictext-panel

I would use env variable GF_INSTALL_PLUGINS on the container level, you can define plugin version explicitly there, e.g.

GF_INSTALL_PLUGINS=grafana-dynatrace-datasource 0.9.5,grafana-splunk-datasource 3.0.1,grafana-servicenow-datasource 2.2.6

Of course also cli has support for plugin version.

grafana cli plugins install <plugin-id> <version>

1 Like