mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
update: hass documentation (#1171)
This commit is contained in:
parent
302bdd1b95
commit
f57549eeab
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
appVersion: 2021.6.3
|
||||
description: Home Assistant
|
||||
name: home-assistant
|
||||
version: 10.1.0
|
||||
version: 10.1.1
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- home-assistant
|
||||
|
@ -1,6 +1,6 @@
|
||||
# home-assistant
|
||||
|
||||
![Version: 10.1.0](https://img.shields.io/badge/Version-10.1.0-informational?style=flat-square) ![AppVersion: 2021.6.3](https://img.shields.io/badge/AppVersion-2021.6.3-informational?style=flat-square)
|
||||
![Version: 10.1.1](https://img.shields.io/badge/Version-10.1.1-informational?style=flat-square) ![AppVersion: 2021.6.3](https://img.shields.io/badge/AppVersion-2021.6.3-informational?style=flat-square)
|
||||
|
||||
Home Assistant
|
||||
|
||||
@ -72,6 +72,25 @@ helm install home-assistant k8s-at-home/home-assistant -f values.yaml
|
||||
|
||||
## Custom configuration
|
||||
|
||||
### HTTP 400 bad request while accessing from your browser
|
||||
|
||||
When configuring Home Assistant behind a reverse proxy make sure you configure the [http](https://www.home-assistant.io/integrations/http) component and set `trusted_proxies` correctly and `use_x_forwarded_for` to `true`.
|
||||
|
||||
For example:
|
||||
|
||||
```yaml
|
||||
http:
|
||||
server_host: 0.0.0.0
|
||||
ip_ban_enabled: true
|
||||
login_attempts_threshold: 5
|
||||
use_x_forwarded_for: true
|
||||
trusted_proxies:
|
||||
# Pod CIDR
|
||||
- 10.69.0.0/16
|
||||
# Node CIDR
|
||||
- 192.168.42.0/24
|
||||
```
|
||||
|
||||
### Z-Wave / Zigbee
|
||||
|
||||
A Z-Wave and/or Zigbee controller device could be used with Home Assistant if passed through from the host to the pod. Skip this section if you are using zwave2mqtt and/or zigbee2mqtt or plan to.
|
||||
|
@ -5,6 +5,25 @@
|
||||
{{- define "custom.custom.configuration" -}}
|
||||
{{ template "custom.custom.configuration.header" . }}
|
||||
|
||||
### HTTP 400 bad request while accessing from your browser
|
||||
|
||||
When configuring Home Assistant behind a reverse proxy make sure you configure the [http](https://www.home-assistant.io/integrations/http) component and set `trusted_proxies` correctly and `use_x_forwarded_for` to `true`.
|
||||
|
||||
For example:
|
||||
|
||||
```yaml
|
||||
http:
|
||||
server_host: 0.0.0.0
|
||||
ip_ban_enabled: true
|
||||
login_attempts_threshold: 5
|
||||
use_x_forwarded_for: true
|
||||
trusted_proxies:
|
||||
# Pod CIDR
|
||||
- 10.69.0.0/16
|
||||
# Node CIDR
|
||||
- 192.168.42.0/24
|
||||
```
|
||||
|
||||
### Z-Wave / Zigbee
|
||||
|
||||
A Z-Wave and/or Zigbee controller device could be used with Home Assistant if passed through from the host to the pod. Skip this section if you are using zwave2mqtt and/or zigbee2mqtt or plan to.
|
||||
|
Loading…
Reference in New Issue
Block a user