Commit released Helm Chart and docs for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
@@ -1,6 +1,15 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<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)
|
||||
|
||||
#### Fix
|
||||
|
||||
* use installContainer to init app and run as www-data ([#2189](https://github.com/truecharts/apps/issues/2189))
|
||||
|
||||
|
||||
|
||||
<a name="koel-0.0.1"></a>
|
||||
### koel-0.0.1 (2022-03-15)
|
||||
|
||||
|
||||
@@ -11,22 +11,53 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| env.DB_CONNECTION | string | `"pgsql"` | |
|
||||
| env.DB_DATABASE | string | `"{{ .Values.postgresql.postgresqlDatabase }}"` | |
|
||||
| env.DB_USERNAME | string | `"{{ .Values.postgresql.postgresqlUsername }}"` | |
|
||||
| env.DB_CONNECTION | string | `"mysql"` | |
|
||||
| env.DB_DATABASE | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
|
||||
| env.DB_USERNAME | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
|
||||
| env.FORCE_HTTPS | bool | `false` | |
|
||||
| env.LASTFM_API_KEY | string | `""` | |
|
||||
| env.LASTFM_API_SECRET | string | `""` | |
|
||||
| env.MEMORY_LIMIT | int | `2048` | |
|
||||
| env.YOUTUBE_API_KEY | string | `""` | |
|
||||
| envValueFrom.APP_KEY.secretKeyRef.key | string | `"APP_KEY"` | |
|
||||
| envValueFrom.APP_KEY.secretKeyRef.name | string | `"koel-secrets"` | |
|
||||
| envValueFrom.DB_HOST.secretKeyRef.key | string | `"plainhost"` | |
|
||||
| envValueFrom.DB_HOST.secretKeyRef.name | string | `"dbcreds"` | |
|
||||
| envValueFrom.DB_PASSWORD.secretKeyRef.key | string | `"postgresql-password"` | |
|
||||
| envValueFrom.DB_PASSWORD.secretKeyRef.name | string | `"dbcreds"` | |
|
||||
| envValueFrom.DB_HOST.secretKeyRef.name | string | `"mariadbcreds"` | |
|
||||
| envValueFrom.DB_PASSWORD.secretKeyRef.key | string | `"mariadb-password"` | |
|
||||
| envValueFrom.DB_PASSWORD.secretKeyRef.name | string | `"mariadbcreds"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"hyzual/koel"` | |
|
||||
| image.tag | string | `"latest@sha256:fa4bafbe3ae869f153bdc3bc87db739f300bef6cc94e398d7efa587a443f86fa"` | |
|
||||
| image.repository | string | `"tccr.io/truecharts/koel"` | |
|
||||
| image.tag | string | `"latest@sha256:4fdc640e5b7d3fd6dd32e61f70bd9d9ac9f59b43d553064a19453b04de0251f1"` | |
|
||||
| installContainers.initdb.command[0] | string | `"php"` | |
|
||||
| installContainers.initdb.command[1] | string | `"artisan"` | |
|
||||
| installContainers.initdb.command[2] | string | `"koel:init"` | |
|
||||
| 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[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.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
|
||||
| installContainers.initdb.volumeMounts[0].mountPath | string | `"/music"` | |
|
||||
| installContainers.initdb.volumeMounts[0].name | string | `"music"` | |
|
||||
| installContainers.initdb.volumeMounts[1].mountPath | string | `"/var/www/html/public/img/covers"` | |
|
||||
| installContainers.initdb.volumeMounts[1].name | string | `"covers"` | |
|
||||
| installContainers.initdb.volumeMounts[2].mountPath | string | `"/var/www/html/storage/search-indexes"` | |
|
||||
| installContainers.initdb.volumeMounts[2].name | string | `"searchindex"` | |
|
||||
| mariadb.enabled | bool | `true` | |
|
||||
| mariadb.existingSecret | string | `"mariadbcreds"` | |
|
||||
| mariadb.mariadbDatabase | string | `"koel"` | |
|
||||
| mariadb.mariadbUsername | string | `"koel"` | |
|
||||
| persistence.covers.enabled | bool | `true` | |
|
||||
| persistence.covers.mountPath | string | `"/var/www/html/public/img/covers"` | |
|
||||
| persistence.music.enabled | bool | `true` | |
|
||||
@@ -35,10 +66,6 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| persistence.searchindex.mountPath | string | `"/var/www/html/storage/search-indexes"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| postgresql.enabled | bool | `true` | |
|
||||
| postgresql.existingSecret | string | `"dbcreds"` | |
|
||||
| postgresql.postgresqlDatabase | string | `"koel"` | |
|
||||
| postgresql.postgresqlUsername | string | `"koel"` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `10185` | |
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | postgresql | 7.0.2 |
|
||||
| https://truecharts.org/ | mariadb | 2.0.4 |
|
||||
| https://truecharts.org | common | 9.1.2 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user