fix(home-assistant): new config for helmchart

This commit is contained in:
WrenIX 2025-01-07 12:36:15 +01:00
parent 947486dc81
commit a88e6e8601
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
4 changed files with 8 additions and 5 deletions

View file

@ -3,7 +3,7 @@ name: home-assistant
description: Home Assistant with tooling to run on an k3s pi
icon: https://www.home-assistant.io/images/favicon-192x192.png
type: application
version: 0.2.14
version: 0.3.0
# renovate: image=ghcr.io/home-assistant/home-assistant
appVersion: "2025.1.0"
maintainers:

View file

@ -7,7 +7,7 @@ description: "Home Assistant with tooling to run on an k3s pi"
# home-assistant
![Version: 0.2.14](https://img.shields.io/badge/Version-0.2.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.1.0](https://img.shields.io/badge/AppVersion-2025.1.0-informational?style=flat-square)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.1.0](https://img.shields.io/badge/AppVersion-2025.1.0-informational?style=flat-square)
Home Assistant with tooling to run on an k3s pi
@ -106,7 +106,7 @@ helm uninstall home-assistant-release
| tolerations | list | `[]` | |
| volumeMounts | list | `[]` | |
| volumes | list | `[]` | |
| zigbee2mqtt.config.homeassistant | bool | `true` | |
| zigbee2mqtt.config.homeassistant.enabled | bool | `true` | |
| zigbee2mqtt.config.serial.port | string | `"/dev/ttyACM0"` | |
| zigbee2mqtt.device | string | `"/dev/ttyACM0"` | |
| zigbee2mqtt.enabled | bool | `true` | |

View file

@ -10,7 +10,9 @@ data:
ZIGBEE2MQTT_CONFIG_ADVANCED_LOG_OUTPUT: '["console"]'
{{- with .Values.zigbee2mqtt.config }}
{{- with .homeassistant }}
ZIGBEE2MQTT_CONFIG_HOMEASSISTANT: {{ . | quote }}
{{- with .enabled }}
ZIGBEE2MQTT_CONFIG_HOMEASSISTANT_ENABLED: {{ . | quote }}
{{- end }}
{{- end }}
{{- range $key, $value := .serial}}
ZIGBEE2MQTT_CONFIG_SERIAL_{{ $key | upper }}: {{ $value | quote }}

View file

@ -57,7 +57,8 @@ zigbee2mqtt:
ingress:
hosts: []
config:
homeassistant: true
homeassistant:
enabled: true
serial:
port: /dev/ttyACM0