Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-10-13 13:16:58 +00:00
parent 1aca91f4cc
commit 01f097eb92
17 changed files with 17 additions and 6 deletions

View File

@ -1,4 +0,0 @@
<a name="home-assistant-8.1.3"></a>
### [home-assistant-8.1.3](https://github.com/truecharts/apps/compare/home-assistant-8.1.2...home-assistant-8.1.3) (2021-10-13)

View File

@ -0,0 +1,4 @@
<a name="home-assistant-8.1.4"></a>
### [home-assistant-8.1.4](https://github.com/truecharts/apps/compare/home-assistant-8.1.3...home-assistant-8.1.4) (2021-10-13)

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 3.0.14
digest: sha256:0c1ecfaee7e9cdd1d1971984ab8e22f3a74fb994b546e555904277f24bdf01f7
generated: "2021-10-13T12:40:56.404906363Z"
generated: "2021-10-13T13:16:00.321269711Z"

View File

@ -29,4 +29,4 @@ sources:
- https://github.com/home-assistant/home-assistant
- https://github.com/cdr/code-server
type: application
version: 8.1.3
version: 8.1.4

View File

@ -15,10 +15,16 @@ data:
else
cat /config/init/recorder.default >> /config/configuration.yaml
fi
if grep -q http: "/config/configuration.yaml"; then
echo "configuration.yaml already contains http section"
else
cat /config/init/http.default >> /config/configuration.yaml
fi
else
echo "configuration.yaml does NOT exist."
cp /config/init/configuration.yaml.default /config/configuration.yaml
cat /config/init/recorder.default >> /config/configuration.yaml
cat /config/init/http.default >> /config/configuration.yaml
fi
configuration.yaml.default: |-
# Configure a default setup of Home Assistant (frontend, api, etc)
@ -39,6 +45,11 @@ data:
purge_keep_days: 30
commit_interval: 3
db_url: {{ ( printf "%s?client_encoding=utf8" ( .Values.postgresql.url.complete | trimAll "\"" ) ) | quote }}
http.default: |-
http:
use_x_forwarded_for: true
trusted_proxies:
- 172.16.0.0/16
{{- end -}}