⬆️ Updating add-on Grafana to 23af72d

This commit is contained in:
Community Hass.io Add-ons Bot 2023-07-08 11:40:39 +00:00
parent 44cf960afe
commit 0e6534649b
5 changed files with 29 additions and 6 deletions

View file

@ -795,10 +795,10 @@ SOFTWARE.
[glances-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[glances-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[glances-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/dca1b09
[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/dca1b09/README.md
[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/23af72d
[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/23af72d/README.md
[grafana-issue]: https://github.com/hassio-addons/addon-grafana/issues
[grafana-version-shield]: https://img.shields.io/badge/version-dca1b09-blue.svg
[grafana-version-shield]: https://img.shields.io/badge/version-23af72d-blue.svg
[grafana-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[grafana-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[grafana-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg

View file

@ -1,4 +1,7 @@
# Changelog since v8.3.0
- Allow installation of unsigned plugins using an URL (#331)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
- ⬆️ Update grafana/grafana to v10 (#335)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

View file

@ -81,6 +81,21 @@ Grafana setup. For a list of available plugins, see:
**Note**: _Adding plugins will result in a longer start-up for the add-on._
### Option: `custom_plugins`
Allows you to specify additional Grafana custom plugins to be installed to your
Grafana setup from an URL.
You must specify the property `url` to the plugin configuration.
If you want to install unsigned plugins, you must also set the `unsigned` property to `true`:
```yaml
custom_plugins:
- name: my-plugin-name
url: https://github.com/my-repo/my-plugin-name/releases/download/0.1.0/my-plugin-name-0.1.0.zip
unsigned: true
```
### Option: `env_vars`
This option allows you to tweak every aspect of Grafana by setting

View file

@ -53,6 +53,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-dca1b09-blue.svg
[release]: https://github.com/hassio-addons/addon-grafana/tree/dca1b09
[release-shield]: https://img.shields.io/badge/version-23af72d-blue.svg
[release]: https://github.com/hassio-addons/addon-grafana/tree/23af72d
[screenshot]: https://github.com/hassio-addons/addon-grafana/raw/main/images/screenshot.png

View file

@ -1,5 +1,5 @@
name: Grafana
version: dca1b09
version: 23af72d
slug: grafana
description: The open platform for beautiful analytics and monitoring
url: https://github.com/hassio-addons/addon-grafana
@ -20,6 +20,7 @@ map:
- ssl
options:
plugins: []
custom_plugins: []
env_vars: []
ssl: true
certfile: fullchain.pem
@ -32,6 +33,10 @@ schema:
log_level: list(trace|debug|info|notice|warning|error|fatal)?
plugins:
- str
custom_plugins:
- name: str
url: str
unsigned: bool?
certfile: str
keyfile: str
ssl: bool