diff --git a/charts/incubator/chevereto/CHANGELOG.md b/charts/incubator/chevereto/CHANGELOG.md
index 9f50e82cccc..010688375f1 100644
--- a/charts/incubator/chevereto/CHANGELOG.md
+++ b/charts/incubator/chevereto/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [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))
+
+
+
### [chevereto-0.0.29](https://github.com/truecharts/apps/compare/chevereto-0.0.28...chevereto-0.0.29) (2022-03-27)
diff --git a/charts/incubator/chevereto/helm-values.md b/charts/incubator/chevereto/helm-values.md
index cc336ee75a4..b25b6a80ab2 100644
--- a/charts/incubator/chevereto/helm-values.md
+++ b/charts/incubator/chevereto/helm-values.md
@@ -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"` | |
diff --git a/docs/apps/incubator/chevereto/CHANGELOG.md b/docs/apps/incubator/chevereto/CHANGELOG.md
index 9f50e82cccc..010688375f1 100644
--- a/docs/apps/incubator/chevereto/CHANGELOG.md
+++ b/docs/apps/incubator/chevereto/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [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))
+
+
+
### [chevereto-0.0.29](https://github.com/truecharts/apps/compare/chevereto-0.0.28...chevereto-0.0.29) (2022-03-27)
diff --git a/docs/apps/incubator/chevereto/helm-values.md b/docs/apps/incubator/chevereto/helm-values.md
index cc336ee75a4..b25b6a80ab2 100644
--- a/docs/apps/incubator/chevereto/helm-values.md
+++ b/docs/apps/incubator/chevereto/helm-values.md
@@ -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"` | |
diff --git a/docs/index.yaml b/docs/index.yaml
index 4de9f6c62e4..2426e8854bd 100644
--- a/docs/index.yaml
+++ b/docs/index.yaml
@@ -5910,6 +5910,43 @@ entries:
- https://github.com/truecharts/apps/releases/download/calibre-web-9.0.21/calibre-web-9.0.21.tgz
version: 9.0.21
chevereto:
+ - annotations:
+ truecharts.org/SCALE-support: "true"
+ truecharts.org/catagories: |
+ - incubator
+ truecharts.org/grade: U
+ apiVersion: v2
+ appVersion: 1.6.2
+ created: "2022-03-27T13:58:49.505092656Z"
+ dependencies:
+ - name: common
+ repository: https://library-charts.truecharts.org
+ version: 9.1.15
+ - condition: mariadb.enabled
+ name: mariadb
+ repository: https://truecharts.org/
+ version: 2.0.12
+ description: Chevereto is an image hosting software that allows you to create
+ a beautiful and full-featured image hosting website on your own server.
+ digest: bef9bfc69e38d48600e24f6c3589a6e7cf5d932d5915dd17b61af37172fd1b45
+ home: https://github.com/truecharts/apps/tree/master/charts/stable/chevereto
+ icon: https://truecharts.org/_static/img/appicons/chevereto.png
+ keywords:
+ - chevereto
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: https://truecharts.org
+ name: chevereto
+ sources:
+ - https://hub.docker.com/r/linuxserver/chevereto
+ - https://chevereto-free.github.io/setup/system/environment.html#image-handling-variables
+ - https://github.com/rodber/chevereto-free
+ type: application
+ urls:
+ - https://github.com/truecharts/apps/releases/download/chevereto-0.0.30/chevereto-0.0.30.tgz
+ version: 0.0.30
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
@@ -85665,4 +85702,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
-generated: "2022-03-27T13:20:40.924006885Z"
+generated: "2022-03-27T13:58:49.513199931Z"