From 5ab9ab9227e31abc764af56ba3a1b4abc1f2d0b3 Mon Sep 17 00:00:00 2001 From: sHa Date: Wed, 18 Mar 2026 18:04:22 +0200 Subject: [PATCH] feat: Bump version to 0.1.7 in Chart.yaml and update logging configuration in deployment.yaml --- home-assistant/Chart.yaml | 2 +- home-assistant/templates/deployment.yaml | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/home-assistant/Chart.yaml b/home-assistant/Chart.yaml index 2a16760..aba1e02 100644 --- a/home-assistant/Chart.yaml +++ b/home-assistant/Chart.yaml @@ -5,5 +5,5 @@ type: application annotations: version-source: github-release:home-assistant/core version-pattern: "s|^v||" -version: 0.1.6 +version: 0.1.7 appVersion: "2026.3.1" diff --git a/home-assistant/templates/deployment.yaml b/home-assistant/templates/deployment.yaml index 49f6b63..9cf7dfb 100644 --- a/home-assistant/templates/deployment.yaml +++ b/home-assistant/templates/deployment.yaml @@ -91,9 +91,13 @@ spec: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - args: - - --log-file - - /dev/null + command: + - /bin/sh + - -c + - | + # Patch HA run script to disable file logging (logs go to stdout via s6) + sed -i 's|exec python3 -m homeassistant --config /config|exec python3 -m homeassistant --config /config --log-file /dev/null|' /etc/services.d/home-assistant/run + exec /init ports: - name: http containerPort: 8123