diff --git a/home-assistant/Chart.yaml b/home-assistant/Chart.yaml index 595443c..2df0e1c 100644 --- a/home-assistant/Chart.yaml +++ b/home-assistant/Chart.yaml @@ -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: diff --git a/home-assistant/README.md b/home-assistant/README.md index 2b81108..9b41b52 100644 --- a/home-assistant/README.md +++ b/home-assistant/README.md @@ -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` | | diff --git a/home-assistant/templates/zigbee2mqtt/configmap.yaml b/home-assistant/templates/zigbee2mqtt/configmap.yaml index 3e09a29..94705ab 100644 --- a/home-assistant/templates/zigbee2mqtt/configmap.yaml +++ b/home-assistant/templates/zigbee2mqtt/configmap.yaml @@ -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 }} diff --git a/home-assistant/values.yaml b/home-assistant/values.yaml index ac3519b..8afd727 100644 --- a/home-assistant/values.yaml +++ b/home-assistant/values.yaml @@ -57,7 +57,8 @@ zigbee2mqtt: ingress: hosts: [] config: - homeassistant: true + homeassistant: + enabled: true serial: port: /dev/ttyACM0