Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
01f097eb92
commit
9c53919330
|
@ -1,4 +0,0 @@
|
|||
|
||||
<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)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
<a name="home-assistant-8.2.0"></a>
|
||||
### [home-assistant-8.2.0](https://github.com/truecharts/apps/compare/home-assistant-8.1.4...home-assistant-8.2.0) (2021-10-13)
|
||||
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 3.0.14
|
||||
digest: sha256:0c1ecfaee7e9cdd1d1971984ab8e22f3a74fb994b546e555904277f24bdf01f7
|
||||
generated: "2021-10-13T13:16:00.321269711Z"
|
||||
generated: "2021-10-13T17:37:01.350555172Z"
|
|
@ -29,4 +29,4 @@ sources:
|
|||
- https://github.com/home-assistant/home-assistant
|
||||
- https://github.com/cdr/code-server
|
||||
type: application
|
||||
version: 8.1.4
|
||||
version: 8.2.0
|
|
@ -22,12 +22,12 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| influxdb.database | string | `"home_assistant"` | |
|
||||
| influxdb.enabled | bool | `false` | |
|
||||
| influxdb.persistence.enabled | bool | `false` | |
|
||||
| initContainers.init-db.command[0] | string | `"/config/init/init.sh"` | |
|
||||
| initContainers.init-db.image | string | `"{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"` | |
|
||||
| initContainers.init-db.volumeMounts[0].mountPath | string | `"/config/init"` | |
|
||||
| initContainers.init-db.volumeMounts[0].name | string | `"init"` | |
|
||||
| initContainers.init-db.volumeMounts[1].mountPath | string | `"/config"` | |
|
||||
| initContainers.init-db.volumeMounts[1].name | string | `"config"` | |
|
||||
| initContainers.init.command[0] | string | `"/config/init/init.sh"` | |
|
||||
| initContainers.init.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
|
||||
| initContainers.init.volumeMounts[0].mountPath | string | `"/config/init"` | |
|
||||
| initContainers.init.volumeMounts[0].name | string | `"init"` | |
|
||||
| initContainers.init.volumeMounts[1].mountPath | string | `"/config"` | |
|
||||
| initContainers.init.volumeMounts[1].name | string | `"config"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
|
@ -10,8 +10,8 @@ image:
|
|||
tag: v2021.10.4@sha256:6f5892e307edd0b135f4ccab1ecee70518e0418b26e6264c23c67d1982eece86
|
||||
|
||||
initContainers:
|
||||
init-db:
|
||||
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
|
||||
init:
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
command: ["/config/init/init.sh"]
|
||||
volumeMounts:
|
||||
- name: init
|
|
@ -26,6 +26,32 @@ data:
|
|||
cat /config/init/recorder.default >> /config/configuration.yaml
|
||||
cat /config/init/http.default >> /config/configuration.yaml
|
||||
fi
|
||||
|
||||
cd "/config" || echo "Could not change path to /config"
|
||||
echo "Creating custom_components directory..."
|
||||
mkdir "/config/custom_components" || echo "custom_components directory already exists"
|
||||
|
||||
echo "Changing to the custom_components directory..."
|
||||
cd "/config/custom_components" || echo "Could not change path to /config/custom_components"
|
||||
|
||||
echo "Downloading HACS"
|
||||
wget "https://github.com/hacs/integration/releases/latest/download/hacs.zip" || exit 0
|
||||
|
||||
if [ -d "/config/custom_components/hacs" ]; then
|
||||
echo "HACS directory already exist, cleaning up..."
|
||||
rm -R "/config/custom_components/hacs"
|
||||
fi
|
||||
|
||||
echo "Creating HACS directory..."
|
||||
mkdir "/config/custom_components/hacs"
|
||||
|
||||
echo "Unpacking HACS..."
|
||||
unzip "/config/custom_components/hacs.zip" -d "/config/custom_components/hacs" >/dev/null 2>&1
|
||||
|
||||
echo "Removing HACS zip file..."
|
||||
rm "/config/custom_components/hacs.zip"
|
||||
echo "Installation complete."
|
||||
|
||||
configuration.yaml.default: |-
|
||||
# Configure a default setup of Home Assistant (frontend, api, etc)
|
||||
default_config:
|
|
@ -23,8 +23,8 @@ service:
|
|||
port: 8123
|
||||
|
||||
initContainers:
|
||||
init-db:
|
||||
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
|
||||
init:
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
command: ["/config/init/init.sh"]
|
||||
volumeMounts:
|
||||
- name: init
|
Loading…
Reference in New Issue