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
+7 -3
View File
@@ -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