feat: Bump version to 0.1.7 in Chart.yaml and update logging configuration in deployment.yaml

This commit is contained in:
sha
2026-03-18 18:04:22 +02:00
parent 1990ef7168
commit 5ab9ab9227
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -5,5 +5,5 @@ type: application
annotations: annotations:
version-source: github-release:home-assistant/core version-source: github-release:home-assistant/core
version-pattern: "s|^v||" version-pattern: "s|^v||"
version: 0.1.6 version: 0.1.7
appVersion: "2026.3.1" appVersion: "2026.3.1"
+7 -3
View File
@@ -91,9 +91,13 @@ spec:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
args: command:
- --log-file - /bin/sh
- /dev/null - -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: ports:
- name: http - name: http
containerPort: 8123 containerPort: 8123