Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-03-27 14:03:09 +00:00
parent 6591e1e46b
commit c5df0d8891
14 changed files with 41 additions and 14 deletions

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="chevereto-0.0.30"></a>
### [chevereto-0.0.30](https://github.com/truecharts/apps/compare/chevereto-0.0.29...chevereto-0.0.30) (2022-03-27)
#### Fix
* use 0/1 instead of true/false ([#2312](https://github.com/truecharts/apps/issues/2312))
<a name="chevereto-0.0.29"></a>
### [chevereto-0.0.29](https://github.com/truecharts/apps/compare/chevereto-0.0.28...chevereto-0.0.29) (2022-03-27)

View File

@@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 2.0.12
digest: sha256:092d936ed0823f593be715262b7bb6783817a8bbe8d1f4c1be8abd83b5003c7b
generated: "2022-03-27T12:15:11.872327392Z"
generated: "2022-03-27T13:57:45.77412563Z"

View File

@@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: chevereto
version: 0.0.29
version: 0.0.30
appVersion: "1.6.2"
description: Chevereto is an image hosting software that allows you to create a beautiful and full-featured image hosting website on your own server.
type: application

View File

@@ -11,14 +11,19 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| chevereto.disable_update_cli | bool | `true` | |
| chevereto.disable_update_http | bool | `true` | |
| chevereto.https | bool | `false` | |
| configmap.chevereto.data.CHEVERETO_DISABLE_UPDATE_CLI | string | `"{{ ternary \"1\" \"0\" .Values.chevereto.disable_update_cli }}"` | |
| configmap.chevereto.data.CHEVERETO_DISABLE_UPDATE_HTTP | string | `"{{ ternary \"1\" \"0\" .Values.chevereto.disable_update_http }}"` | |
| configmap.chevereto.data.CHEVERETO_HTTPS | string | `"{{ ternary \"1\" \"0\" .Values.chevereto.https }}"` | |
| configmap.chevereto.enabled | bool | `true` | |
| env.CHEVERETO_DB_DRIVER | string | `"mysql"` | |
| env.CHEVERETO_DB_NAME | string | `"{{ .Values.mariadb.mariadbUsername }}"` | |
| env.CHEVERETO_DB_PORT | string | `"3306"` | |
| env.CHEVERETO_DB_USER | string | `"{{ .Values.mariadb.mariadbDatabase }}"` | |
| env.CHEVERETO_DISABLE_UPDATE_CLI | bool | `true` | |
| env.CHEVERETO_DISABLE_UPDATE_HTTP | bool | `true` | |
| env.CHEVERETO_HTTPS | bool | `false` | |
| env.CHEVERETO_TAG | string | `"free"` | |
| envFrom[0].configMapRef.name | string | `"{{ include \"common.names.fullname\" . }}-chevereto"` | |
| envValueFrom.CHEVERETO_DB_HOST.secretKeyRef.key | string | `"plainporthost"` | |
| envValueFrom.CHEVERETO_DB_HOST.secretKeyRef.name | string | `"mariadbcreds"` | |
| envValueFrom.CHEVERETO_DB_PASS.secretKeyRef.key | string | `"mariadb-password"` | |

View File

@@ -17,10 +17,23 @@ env:
CHEVERETO_DB_USER: "{{ .Values.mariadb.mariadbDatabase }}"
CHEVERETO_DB_PORT: "3306"
CHEVERETO_TAG: "free"
# User Defined
CHEVERETO_HTTPS: false
CHEVERETO_DISABLE_UPDATE_HTTP: true
CHEVERETO_DISABLE_UPDATE_CLI: true
envFrom:
- configMapRef:
name: '{{ include "common.names.fullname" . }}-chevereto'
chevereto:
https: false
disable_update_http: true
disable_update_cli: true
configmap:
chevereto:
enabled: true
data:
CHEVERETO_HTTPS: "{{ ternary \"1\" \"0\" .Values.chevereto.https }}"
CHEVERETO_DISABLE_UPDATE_HTTP: "{{ ternary \"1\" \"0\" .Values.chevereto.disable_update_http }}"
CHEVERETO_DISABLE_UPDATE_CLI: "{{ ternary \"1\" \"0\" .Values.chevereto.disable_update_cli }}"
envValueFrom:
CHEVERETO_DB_HOST:

View File

@@ -168,24 +168,24 @@ questions:
label: "Value"
schema:
type: string
- variable: env
- variable: chevereto
group: "Container Configuration"
label: "Image Environment"
label: "Chevereto Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: CHEVERETO_HTTPS
- variable: https
label: "CHEVERETO_HTTPS"
schema:
type: boolean
default: false
- variable: CHEVERETO_DISABLE_UPDATE_HTTP
- variable: disable_update_http
label: "CHEVERETO_DISABLE_UPDATE_HTTP"
schema:
type: boolean
default: true
- variable: CHEVERETO_DISABLE_UPDATE_CLI
- variable: disable_update_cli
label: "CHEVERETO_DISABLE_UPDATE_CLI"
schema:
type: boolean