From f8d5a57e8a780895d9bcd0136774112c5953abe0 Mon Sep 17 00:00:00 2001 From: Sebastian J Date: Fri, 19 Jun 2020 23:59:11 -0400 Subject: [PATCH] Release 7.0.1 --- dist/README.md | 23 +++++++++++++++++++++-- dist/plugin.json | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/dist/README.md b/dist/README.md index c5d01ab..6b19d00 100644 --- a/dist/README.md +++ b/dist/README.md @@ -6,14 +6,33 @@ A simple panel that shows only one button - to integrate with any kind of HTTP/R * Support API key via header `X-API-Key` or query parameter `?api-key` * Custom label text & Grafana template design +## Configuration + ![Screenshot](img/screenshot.png) +## Usage + +![Screencast](img/screencast.gif) + ## Install -Use [Grafana's environment variable](https://grafana.com/docs/grafana/latest/installation/docker/#build-and-run-a-docker-image-with-pre-installed-plugins) to add this plugin to your installation: +### CLI + +Via the [Grafana CLI](https://grafana.com/docs/grafana/latest/administration/cli/): +```BASH +$ grafana-cli --pluginUrl https://github.com/cloudspout/cloudspout-button-panel/releases/download/7.0.1/cloudspout-button-panel.zip \ + plugins install cloudspout-button-panel ``` -GF_INSTALL_PLUGINS="https://github.com/cloudspout/cloudspout-button-panel/releases/download/1.0.3/cloudspout-button-panel.zip;cloudspout-button-panel" + +### Docker + +Use [Grafana's environment variable](https://grafana.com/docs/grafana/latest/installation/docker/#build-and-run-a-docker-image-with-pre-installed-plugins) to add this plugin to your installation: + +```BASH +$ docker run -p 3000:3000 -it \ + -e "GF_INSTALL_PLUGINS=https://github.com/cloudspout/cloudspout-button-panel/releases/download/7.0.1/cloudspout-button-panel.zip;cloudspout-button-panel" \ + grafana/grafana:7.0.3 ``` diff --git a/dist/plugin.json b/dist/plugin.json index f71841a..5247c61 100644 --- a/dist/plugin.json +++ b/dist/plugin.json @@ -26,7 +26,7 @@ } ], "screenshots": [], - "version": "7.0.0", + "version": "7.0.1", "updated": "2020-06-20" }, "dependencies": { diff --git a/package-lock.json b/package-lock.json index bb1a630..1fd217e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cloudspout-button-panel", - "version": "7.0.0", + "version": "7.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4da8429..23c54e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cloudspout-button-panel", - "version": "7.0.0", + "version": "7.0.1", "description": "Panel for a single button", "scripts": { "clean": "rm -rf dist/",