mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-06 20:21:26 +00:00
🎉 Release of add-on Grafana 6.3.0
This commit is contained in:
parent
596af6c2dc
commit
d9910d50be
5 changed files with 43 additions and 8 deletions
|
@ -817,10 +817,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/v6.2.0
|
||||
[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/v6.2.0/README.md
|
||||
[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/v6.3.0
|
||||
[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/v6.3.0/README.md
|
||||
[grafana-issue]: https://github.com/hassio-addons/addon-grafana/issues
|
||||
[grafana-version-shield]: https://img.shields.io/badge/version-v6.2.0-blue.svg
|
||||
[grafana-version-shield]: https://img.shields.io/badge/version-v6.3.0-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
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
## What’s changed
|
||||
|
||||
## ✨ New features
|
||||
|
||||
- Add access to Home Assistant configuration so SQLite DB can be used @frenck (#134)
|
||||
- Add /health as watchdog url @mdegat01 (#129)
|
||||
|
||||
## 📚 Documentation
|
||||
|
||||
- Document anonymous access and limitations @deviantintegral (#101)
|
||||
|
||||
## ⬆️ Dependency updates
|
||||
|
||||
- ⬆️ Upgrades Grafana to v7.5.1 @frenck (#124)
|
||||
- ⬆️ Upgrades Grafana Image Renderer to 2.0.1 @frenck (#125)
|
||||
- ⬆️ Bump ludeeus/action-shellcheck from 1.0.0 to 1.1.0 @dependabot (#128)
|
||||
- ⬆️ Bump docker/build-push-action from v2.3.0 to v2.4.0 @dependabot (#130)
|
||||
- ⬆️ Bump docker/setup-qemu-action from v1.0.1 to v1.0.2 @dependabot (#132)
|
||||
- ⬆️ Bump docker/setup-buildx-action from v1.1.1 to v1.1.2 @dependabot (#131)
|
||||
- ⬆️ Upgrades Grafana to v7.5.3 @frenck (#136)
|
||||
- ⬆️ Upgrades add-on base image to v4.1.4 @frenck (#135)
|
||||
|
|
|
@ -113,6 +113,26 @@ for Home Assistant.
|
|||
|
||||
1. Hit Save & Test
|
||||
|
||||
## Anonymous Access
|
||||
|
||||
Anonymous access on a local network is possible by exposing the port in the
|
||||
add-on configuration, along with setting the following environment variables:
|
||||
|
||||
```yaml
|
||||
env_vars:
|
||||
- name: GF_AUTH_ANONYMOUS_ACCESS_ENABLED
|
||||
value: "true"
|
||||
- name: GF_AUTH_ANONYMOUS_ACCESS_ORG_NAME
|
||||
value: "Main Org."
|
||||
- name: GF_AUTH_ANONYMOUS_ACCESS_ORG_ROLE
|
||||
value: "Viewer"
|
||||
```
|
||||
|
||||
It is not possible to enable anonymous or non-administrator access with Home
|
||||
Assistant Cloud. This includes embedding Grafana resources with an iframe or
|
||||
rendered image inside of a dashboard. For more details see
|
||||
[Anonymous login not working, Grafana add-on 3.0.0 #55](https://github.com/hassio-addons/addon-grafana/issues/55).
|
||||
|
||||
## Known issues and limitations
|
||||
|
||||
- This add-on does support ARM-based devices, nevertheless, they must
|
||||
|
|
|
@ -34,6 +34,6 @@ insights to your home.
|
|||
[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-v6.2.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-grafana/tree/v6.2.0
|
||||
[release-shield]: https://img.shields.io/badge/version-v6.3.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-grafana/tree/v6.3.0
|
||||
[screenshot]: https://github.com/hassio-addons/addon-grafana/raw/main/images/screenshot.png
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Grafana",
|
||||
"version": "6.2.0",
|
||||
"version": "6.3.0",
|
||||
"slug": "grafana",
|
||||
"description": "The open platform for beautiful analytics and monitoring",
|
||||
"url": "https://github.com/hassio-addons/addon-grafana",
|
||||
|
@ -15,8 +15,10 @@
|
|||
"armv7"
|
||||
],
|
||||
"map": [
|
||||
"config",
|
||||
"ssl"
|
||||
],
|
||||
"watchdog": "http://[HOST]:1337/api/health",
|
||||
"options": {
|
||||
"plugins": [],
|
||||
"env_vars": [],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue