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