Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-10-13 10:36:19 +00:00
parent 4abed09508
commit 2f54af466f
17 changed files with 33 additions and 30 deletions

View File

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

View File

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

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 3.0.14
digest: sha256:0c1ecfaee7e9cdd1d1971984ab8e22f3a74fb994b546e555904277f24bdf01f7
generated: "2021-10-13T10:04:03.410190975Z"
generated: "2021-10-13T10:34:59.904904592Z"

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.0
version: 8.1.1

View File

@ -11,7 +11,7 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env | object | `{}` | |
| env.PUID | int | `568` | |
| git.deployKey | string | `""` | |
| git.deployKeyBase64 | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
@ -23,7 +23,7 @@ You will, however, be able to use all values referenced in the common chart here
| 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.image.repository }}:{{ .Values.image.tag }}"` | |
| 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"` | |
@ -33,9 +33,12 @@ You will, however, be able to use all values referenced in the common chart here
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| postgresql | object | See values.yaml | Enable and configure postgresql database subchart under this key. For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql) |
| prometheus.serviceMonitor.enabled | bool | `false` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `8123` | |
All Rights Reserved - The TrueCharts Project

View File

@ -26,6 +26,12 @@ postgresql:
enabled: true
postgresqlUsername: home-assistant
postgresqlDatabase: home-assistant
existingSecret: "dbcreds"
persistence:
db:
storageClass: "SCALE-ZFS"
dbbackups:
storageClass: "SCALE-ZFS"
##
# Most other defaults are set in questions.yaml

View File

@ -566,18 +566,6 @@ questions:
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."
@ -1203,7 +1191,7 @@ questions:
label: "ReadOnly Root Filesystem"
schema:
type: boolean
default: true
default: false
- variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation"
schema:
@ -1213,7 +1201,7 @@ questions:
label: "runAsNonRoot"
schema:
type: boolean
default: true
default: false
- variable: podSecurityContext
group: "Security and Permissions"
@ -1226,13 +1214,13 @@ questions:
description: "The UserID of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: The groupID this App of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."

View File

@ -5,8 +5,16 @@ image:
pullPolicy: IfNotPresent
tag: v2021.10.4@sha256:6f5892e307edd0b135f4ccab1ecee70518e0418b26e6264c23c67d1982eece86
env: {}
# TZ:
env:
PUID: 568
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
@ -16,7 +24,7 @@ service:
initContainers:
init-db:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
command: ["/config/init/init.sh"]
volumeMounts:
- name: init
@ -51,8 +59,6 @@ persistence:
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true
# -- Enable and configure postgresql database subchart under this key.
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)