Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-16 22:20:07 +00:00
parent fc2304d7e2
commit cbc32aed39
15 changed files with 32 additions and 17 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="koel-0.0.4"></a>
### [koel-0.0.4](https://github.com/truecharts/apps/compare/koel-0.0.3...koel-0.0.4) (2022-03-16)
#### Fix
* Run as root ([#2191](https://github.com/truecharts/apps/issues/2191))
<a name="koel-0.0.3"></a>
### [koel-0.0.3](https://github.com/truecharts/apps/compare/koel-0.0.1...koel-0.0.3) (2022-03-16)

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 2.0.4
digest: sha256:79454ea271a748bc391d512c948e0e908c844a14708293dce3b4871e6dc5c38d
generated: "2022-03-16T20:18:06.262480746Z"
generated: "2022-03-16T22:13:34.811153912Z"

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/koel/docker
- https://hub.docker.com/r/hyzual/koel
- https://github.com/koel/koel
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- media

View File

@ -13,6 +13,7 @@ You will, however, be able to use all values referenced in the common chart here
|-----|------|---------|-------------|
| env.DB_CONNECTION | string | `"mysql"` | |
| env.DB_DATABASE | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
| env.DB_PORT | string | `"3306"` | |
| env.DB_USERNAME | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
| env.FORCE_HTTPS | bool | `false` | |
| env.LASTFM_API_KEY | string | `""` | |
@ -34,19 +35,21 @@ You will, however, be able to use all values referenced in the common chart here
| installContainers.initdb.command[3] | string | `"--no-assets"` | |
| installContainers.initdb.env[0].name | string | `"DB_CONNECTION"` | |
| installContainers.initdb.env[0].value | string | `"mysql"` | |
| installContainers.initdb.env[1].name | string | `"DB_USERNAME"` | |
| installContainers.initdb.env[1].value | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
| installContainers.initdb.env[2].name | string | `"DB_DATABASE"` | |
| installContainers.initdb.env[2].value | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
| installContainers.initdb.env[3].name | string | `"DB_HOST"` | |
| installContainers.initdb.env[3].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
| installContainers.initdb.env[3].valueFrom.secretKeyRef.name | string | `"mariadbcreds"` | |
| installContainers.initdb.env[4].name | string | `"DB_PASSWORD"` | |
| installContainers.initdb.env[4].valueFrom.secretKeyRef.key | string | `"mariadb-password"` | |
| installContainers.initdb.env[1].name | string | `"DB_PORT"` | |
| installContainers.initdb.env[1].value | string | `"3306"` | |
| installContainers.initdb.env[2].name | string | `"DB_USERNAME"` | |
| installContainers.initdb.env[2].value | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
| installContainers.initdb.env[3].name | string | `"DB_DATABASE"` | |
| installContainers.initdb.env[3].value | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
| installContainers.initdb.env[4].name | string | `"DB_HOST"` | |
| installContainers.initdb.env[4].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
| installContainers.initdb.env[4].valueFrom.secretKeyRef.name | string | `"mariadbcreds"` | |
| installContainers.initdb.env[5].name | string | `"APP_KEY"` | |
| installContainers.initdb.env[5].valueFrom.secretKeyRef.key | string | `"APP_KEY"` | |
| installContainers.initdb.env[5].valueFrom.secretKeyRef.name | string | `"koel-secrets"` | |
| installContainers.initdb.env[5].name | string | `"DB_PASSWORD"` | |
| installContainers.initdb.env[5].valueFrom.secretKeyRef.key | string | `"mariadb-password"` | |
| installContainers.initdb.env[5].valueFrom.secretKeyRef.name | string | `"mariadbcreds"` | |
| installContainers.initdb.env[6].name | string | `"APP_KEY"` | |
| installContainers.initdb.env[6].valueFrom.secretKeyRef.key | string | `"APP_KEY"` | |
| installContainers.initdb.env[6].valueFrom.secretKeyRef.name | string | `"koel-secrets"` | |
| installContainers.initdb.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| installContainers.initdb.volumeMounts[0].mountPath | string | `"/music"` | |
| installContainers.initdb.volumeMounts[0].name | string | `"music"` | |

View File

@ -15,6 +15,7 @@ env:
DB_CONNECTION: "mysql"
DB_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
DB_PORT: "3306"
FORCE_HTTPS: false
MEMORY_LIMIT: 2048
LASTFM_API_KEY: ""
@ -55,6 +56,8 @@ installContainers:
env:
- name: DB_CONNECTION
value: "mysql"
- name: DB_PORT
value: "3306"
- name: DB_USERNAME
value: "{{ .Values.mariadb.mariadbUsername }}"
- name: DB_DATABASE

View File

@ -1819,7 +1819,7 @@ questions:
label: "runAsNonRoot"
schema:
type: boolean
default: true
default: false
- variable: capabilities
label: "Capabilities"
schema:
@ -1859,13 +1859,13 @@ questions:
description: "The UserID of the user running the application"
schema:
type: int
default: 33
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: The groupID this App of the user running the application"
schema:
type: int
default: 33
default: 0
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."