From 1990ef7168fc9c071cd6c625244af8d3ff577f43 Mon Sep 17 00:00:00 2001 From: sHa Date: Wed, 18 Mar 2026 16:41:29 +0200 Subject: [PATCH] feat: Bump version to 0.1.6 in Chart.yaml and update log cleanup in deployment.yaml --- home-assistant/Chart.yaml | 2 +- home-assistant/templates/deployment.yaml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/home-assistant/Chart.yaml b/home-assistant/Chart.yaml index 09ac632..2a16760 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.5 +version: 0.1.6 appVersion: "2026.3.1" diff --git a/home-assistant/templates/deployment.yaml b/home-assistant/templates/deployment.yaml index ce12ecc..49f6b63 100644 --- a/home-assistant/templates/deployment.yaml +++ b/home-assistant/templates/deployment.yaml @@ -32,10 +32,8 @@ spec: - /bin/sh - -c - | - # Redirect HA log files to container stdout + # Clean up old log files from PVC rm -f /config/home-assistant.log /config/home-assistant.log.1 - ln -sf /dev/stdout /config/home-assistant.log - ln -sf /dev/null /config/home-assistant.log.1 volumeMounts: - name: config mountPath: /config @@ -93,6 +91,9 @@ spec: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} + args: + - --log-file + - /dev/null ports: - name: http containerPort: 8123