Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
cc3bed929e
commit
5dd701260f
|
@ -1,12 +0,0 @@
|
|||
|
||||
<a name="home-assistant-8.2.2"></a>
|
||||
### [home-assistant-8.2.2](https://github.com/truecharts/apps/compare/home-assistant-8.2.1...home-assistant-8.2.2) (2021-10-17)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.3.10 ([#1160](https://github.com/truecharts/apps/issues/1160))
|
||||
|
||||
#### Fix
|
||||
|
||||
* force users using correct / prefix for mounPath ([#1156](https://github.com/truecharts/apps/issues/1156))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="home-assistant-8.2.3"></a>
|
||||
### [home-assistant-8.2.3](https://github.com/truecharts/apps/compare/home-assistant-8.2.2...home-assistant-8.2.3) (2021-10-18)
|
||||
|
||||
#### Fix
|
||||
|
||||
* Fix invisible items in Automation Dashboard ([#1163](https://github.com/truecharts/apps/issues/1163))
|
||||
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 3.0.16
|
||||
digest: sha256:5e1597affe67b70ac638fd3085d11b6de39a5bed59b3710bde5193bb2376e286
|
||||
generated: "2021-10-17T18:40:41.409659286Z"
|
||||
generated: "2021-10-18T08:43:44.545946519Z"
|
|
@ -29,4 +29,4 @@ sources:
|
|||
- https://github.com/home-assistant/home-assistant
|
||||
- https://github.com/cdr/code-server
|
||||
type: application
|
||||
version: 8.2.2
|
||||
version: 8.2.3
|
|
@ -27,6 +27,16 @@ data:
|
|||
cat /config/init/http.default >> /config/configuration.yaml
|
||||
fi
|
||||
|
||||
echo "Creating include files..."
|
||||
for include_file in groups.yaml automations.yaml scripts.yaml scenes.yaml; do
|
||||
if test -f "/config/$include_file"; then
|
||||
echo "$include_file exists."
|
||||
else
|
||||
echo "$include_file does NOT exist."
|
||||
touch "/config/$include_file"
|
||||
fi
|
||||
done
|
||||
|
||||
cd "/config" || echo "Could not change path to /config"
|
||||
echo "Creating custom_components directory..."
|
||||
mkdir "/config/custom_components" || echo "custom_components directory already exists"
|
||||
|
@ -60,11 +70,10 @@ data:
|
|||
tts:
|
||||
- platform: google_translate
|
||||
|
||||
# Example Includes
|
||||
# group: !include groups.yaml
|
||||
# automation: !include automations.yaml
|
||||
# script: !include scripts.yaml
|
||||
# scene: !include scenes.yaml
|
||||
group: !include groups.yaml
|
||||
automation: !include automations.yaml
|
||||
script: !include scripts.yaml
|
||||
scene: !include scenes.yaml
|
||||
recorder.default: |-
|
||||
|
||||
recorder:
|
Loading…
Reference in New Issue