mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 03:27:08 +00:00
fix(home-assistant): disable deprecated http: config section on ha-dev
HA core has migrated the http: config (server_port, ip_ban_enabled, login_attempts_threshold, use_x_forwarded_for, trusted_proxies) out of configuration.yaml, causing "already been migrated and is now being ignored" warnings. Disable http.enabled by default on home-assistant-dev, mark the section deprecated in both charts, and document removal planned for appVersion 2027.7. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -5,5 +5,5 @@ type: application
|
||||
annotations:
|
||||
version-source: github-release:home-assistant/core
|
||||
version-pattern: "s|^v||"
|
||||
version: 0.1.38
|
||||
version: 0.1.39
|
||||
appVersion: "2026.7.3"
|
||||
|
||||
@@ -42,6 +42,7 @@ spec:
|
||||
- name: config
|
||||
mountPath: /config
|
||||
{{- if .Values.http.enabled }}
|
||||
# DEPRECATED: see http: comment in values.yaml. Removed once appVersion reaches 2027.7.
|
||||
- name: init-http
|
||||
image: busybox:latest
|
||||
env:
|
||||
|
||||
@@ -72,6 +72,13 @@ persistence:
|
||||
- ReadWriteOnce
|
||||
storageClass: ""
|
||||
|
||||
# DEPRECATED: HA core has migrated this entire http: config section
|
||||
# (server_port, ip_ban_enabled, login_attempts_threshold, use_x_forwarded_for,
|
||||
# trusted_proxies) out of configuration.yaml. Setting enabled: true now makes
|
||||
# HA log "The HTTP configuration in configuration.yaml has already been
|
||||
# migrated and is now being ignored. Please remove the http: block from your
|
||||
# configuration.yaml." Leave disabled; this section and the init-http
|
||||
# container will be removed from the chart once appVersion reaches 2027.7.
|
||||
http:
|
||||
enabled: false
|
||||
server_port: 8123
|
||||
|
||||
Reference in New Issue
Block a user