Skip to content

Commit 9ad2dce

Browse files
authored
Drop support for armv7 systems (#485)
1 parent b4cab77 commit 9ad2dce

File tree

6 files changed

+1
-12
lines changed

6 files changed

+1
-12
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"matchStringsStrategy": "any",
1313
"matchStrings": [
1414
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
15-
"(aarch64|amd64|armhf|armv7|i386):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s"
15+
"(aarch64|amd64):\\s[\"']?(?<depName>.*?):(?<currentValue>.*?)[\"']?\\s"
1616
],
1717
"datasourceTemplate": "docker"
1818
},

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
![Supports aarch64 Architecture][aarch64-shield]
88
![Supports amd64 Architecture][amd64-shield]
9-
![Supports armhf Architecture][armhf-shield]
10-
![Supports armv7 Architecture][armv7-shield]
11-
![Supports i386 Architecture][i386-shield]
129

1310
[![Github Actions][github-actions-shield]][github-actions]
1411
![Project Maintenance][maintenance-shield]
@@ -104,8 +101,6 @@ SOFTWARE.
104101

105102
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
106103
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
107-
[armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
108-
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
109104
[commits-shield]: https://img.shields.io/github/commit-activity/y/hassio-addons/addon-grafana.svg
110105
[commits]: https://github.com/hassio-addons/addon-grafana/commits/main
111106
[contributors]: https://github.com/hassio-addons/addon-grafana/graphs/contributors
@@ -120,7 +115,6 @@ SOFTWARE.
120115
[github-actions]: https://github.com/hassio-addons/addon-grafana/actions
121116
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
122117
[github-sponsors]: https://github.com/sponsors/frenck
123-
[i386-shield]: https://img.shields.io/badge/i386-no-red.svg
124118
[issue]: https://github.com/hassio-addons/addon-grafana/issues
125119
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-grafana.svg
126120
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg

grafana/DOCS.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ rendered image inside of a dashboard. For more details see
156156

157157
## Known issues and limitations
158158

159-
- This add-on does support ARM-based devices, nevertheless, they must
160-
at least be an ARMv7 device. (Raspberry Pi 1 and Zero is not supported).
161159
- `To render a panel image, you must install the Grafana Image Renderer plugin.`
162160
This message is shown on ARM devices, like a Raspberry Pi. The Grafana Image
163161
Renderer plugin is not available for these devices.

grafana/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ ARG GRAFANA_IMAGE_RENDERER_VERSION="v4.1.5"
1212
RUN \
1313
ARCH="${BUILD_ARCH}" \
1414
&& if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \
15-
&& if [ "${BUILD_ARCH}" = "armv7" ]; then ARCH="armhf"; fi \
1615
\
1716
&& curl -J -L -o /tmp/grafana.deb \
1817
"https://dl.grafana.com/oss/release/grafana_${GRAFANA_VERSION#v}_${ARCH}.deb" \

grafana/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
build_from:
33
aarch64: ghcr.io/hassio-addons/debian-base/aarch64:8.1.4
44
amd64: ghcr.io/hassio-addons/debian-base/amd64:8.1.4
5-
armv7: ghcr.io/hassio-addons/debian-base/armv7:8.1.4

grafana/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ panel_title: Grafana
1414
arch:
1515
- aarch64
1616
- amd64
17-
- armv7
1817
map:
1918
- homeassistant_config
2019
- share

0 commit comments

Comments
 (0)