chore: remove references to unsigned (#4883)

pull/4888/head
Helen Weller 2023-04-21 13:29:23 -04:00 committed by GitHub
parent 1f06b034e5
commit 79db981e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 22 deletions

View File

@ -136,24 +136,6 @@ of Grafana OSS or Grafana Enterprise.
GF_PATHS_PLUGINS=/custom/plugins/directory/
```
2. Allow Grafana to load the unsigned plugin. The Flight SQL plugin is unsigned and Grafana requires you to explicitly load unsigned plugins.
Do one of the following:
- Set the `plugins.allow_loading_unsigned_plugins` directive in your
Grafana configuration file to allow the `influxdata-flightsql-datasource`:
```ini
[plugins]
allow_loading_unsigned_plugins = influxdata-flightsql-datasource
```
- Set the `GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS` environment variable
to `influxdata-flightsql-datasource`:
```sh
GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=influxdata-flightsql-datasource
```
4. Restart Grafana to apply the configuration changes.
<!----------------------------- END LOCAL CONTENT ----------------------------->
@ -164,7 +146,6 @@ To add the Flight SQL plugin to your pre-existing Grafana Docker deployment,
use `docker run` or `docker-compose` to do the following:
- Mount the plugin directory (`/custom/plugins/directory/influxdata-flightsql-datasource`) as a volume to your Grafana container.
- Set the `GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS` environment variable to the plugin name. The Flight SQL plugin is unsigned and Grafana requires you to explicitly load unsigned plugins.
### Install with Docker Run
@ -174,7 +155,6 @@ docker run \
--volume $PWD/influxdata-flightsql-datasource:/custom/plugins/directory/influxdata-flightsql-datasource \
--publish 3000:3000 \
--name grafana \
--env GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=influxdata-flightsql-datasource \
grafana/grafana:latest
```
{{% /code-callout %}}
@ -189,8 +169,6 @@ services:
image: grafana/grafana:latest
ports:
- 3000:3000
environment:
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=influxdata-flightsql-datasource
volumes:
- ./influxdata-flightsql-datasource:/custom/plugins/directory/influxdata-flightsql-datasource
restart: always