Tanguy Herbron
b8557ab571
Add configuration entry for the new database paradigm, and reword the configuration pipeline to allow for better configuration maintainability and secret management.
31 lines
779 B
YAML
31 lines
779 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: homeassistant-config
|
|
namespace: home-automation
|
|
data:
|
|
configuration.yaml: |
|
|
default_config:
|
|
http:
|
|
ip_ban_enabled: false
|
|
login_attempts_threshold: -1
|
|
use_x_forwarded_for: true
|
|
trusted_proxies:
|
|
- 10.42.0.0/16
|
|
- 10.20.0.0/16
|
|
- 10.10.0.0/16
|
|
- 10.18.242.163/32
|
|
homeassistant:
|
|
name: Home
|
|
latitude: 55.656428
|
|
longitude: 12.552433
|
|
elevation: 4
|
|
unit_system: metric
|
|
time_zone: Europe/Copenhagen
|
|
external_url: http://hassio.beta.entos
|
|
internal_url: http://homeassistant-svc.home-automation.svc.cluster.local
|
|
frontend:
|
|
themes: !include_dir_merge_named themes
|
|
prometheus:
|
|
recorder: !include recorder.yaml
|