diff --git a/incubator/chevereto/0.0.29/CHANGELOG.md b/incubator/chevereto/0.0.30/CHANGELOG.md
similarity index 80%
rename from incubator/chevereto/0.0.29/CHANGELOG.md
rename to incubator/chevereto/0.0.30/CHANGELOG.md
index 9f50e82cccc..010688375f1 100644
--- a/incubator/chevereto/0.0.29/CHANGELOG.md
+++ b/incubator/chevereto/0.0.30/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/incubator/chevereto/0.0.29/CONFIG.md b/incubator/chevereto/0.0.30/CONFIG.md
similarity index 100%
rename from incubator/chevereto/0.0.29/CONFIG.md
rename to incubator/chevereto/0.0.30/CONFIG.md
diff --git a/incubator/chevereto/0.0.29/Chart.lock b/incubator/chevereto/0.0.30/Chart.lock
similarity index 85%
rename from incubator/chevereto/0.0.29/Chart.lock
rename to incubator/chevereto/0.0.30/Chart.lock
index 3f6cd25f4e6..53afc7f1578 100644
--- a/incubator/chevereto/0.0.29/Chart.lock
+++ b/incubator/chevereto/0.0.30/Chart.lock
@@ -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"
diff --git a/incubator/chevereto/0.0.29/Chart.yaml b/incubator/chevereto/0.0.30/Chart.yaml
similarity index 98%
rename from incubator/chevereto/0.0.29/Chart.yaml
rename to incubator/chevereto/0.0.30/Chart.yaml
index 4d8b0898255..978c0a9ccdf 100644
--- a/incubator/chevereto/0.0.29/Chart.yaml
+++ b/incubator/chevereto/0.0.30/Chart.yaml
@@ -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
diff --git a/incubator/chevereto/0.0.29/README.md b/incubator/chevereto/0.0.30/README.md
similarity index 100%
rename from incubator/chevereto/0.0.29/README.md
rename to incubator/chevereto/0.0.30/README.md
diff --git a/incubator/chevereto/0.0.29/app-readme.md b/incubator/chevereto/0.0.30/app-readme.md
similarity index 100%
rename from incubator/chevereto/0.0.29/app-readme.md
rename to incubator/chevereto/0.0.30/app-readme.md
diff --git a/incubator/chevereto/0.0.29/charts/common-9.1.15.tgz b/incubator/chevereto/0.0.30/charts/common-9.1.15.tgz
similarity index 100%
rename from incubator/chevereto/0.0.29/charts/common-9.1.15.tgz
rename to incubator/chevereto/0.0.30/charts/common-9.1.15.tgz
diff --git a/incubator/chevereto/0.0.29/charts/mariadb-2.0.12.tgz b/incubator/chevereto/0.0.30/charts/mariadb-2.0.12.tgz
similarity index 100%
rename from incubator/chevereto/0.0.29/charts/mariadb-2.0.12.tgz
rename to incubator/chevereto/0.0.30/charts/mariadb-2.0.12.tgz
diff --git a/incubator/chevereto/0.0.29/helm-values.md b/incubator/chevereto/0.0.30/helm-values.md
similarity index 77%
rename from incubator/chevereto/0.0.29/helm-values.md
rename to incubator/chevereto/0.0.30/helm-values.md
index cc336ee75a4..b25b6a80ab2 100644
--- a/incubator/chevereto/0.0.29/helm-values.md
+++ b/incubator/chevereto/0.0.30/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/incubator/chevereto/0.0.29/ix_values.yaml b/incubator/chevereto/0.0.30/ix_values.yaml
similarity index 67%
rename from incubator/chevereto/0.0.29/ix_values.yaml
rename to incubator/chevereto/0.0.30/ix_values.yaml
index 7f8c3daed60..8bbe208915e 100644
--- a/incubator/chevereto/0.0.29/ix_values.yaml
+++ b/incubator/chevereto/0.0.30/ix_values.yaml
@@ -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:
diff --git a/incubator/chevereto/0.0.29/questions.yaml b/incubator/chevereto/0.0.30/questions.yaml
similarity index 99%
rename from incubator/chevereto/0.0.29/questions.yaml
rename to incubator/chevereto/0.0.30/questions.yaml
index cf0791c4425..9a2cf2204ed 100644
--- a/incubator/chevereto/0.0.29/questions.yaml
+++ b/incubator/chevereto/0.0.30/questions.yaml
@@ -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
diff --git a/incubator/chevereto/0.0.29/security.md b/incubator/chevereto/0.0.30/security.md
similarity index 100%
rename from incubator/chevereto/0.0.29/security.md
rename to incubator/chevereto/0.0.30/security.md
diff --git a/incubator/chevereto/0.0.29/templates/common.yaml b/incubator/chevereto/0.0.30/templates/common.yaml
similarity index 100%
rename from incubator/chevereto/0.0.29/templates/common.yaml
rename to incubator/chevereto/0.0.30/templates/common.yaml
diff --git a/incubator/chevereto/0.0.29/values.yaml b/incubator/chevereto/0.0.30/values.yaml
similarity index 100%
rename from incubator/chevereto/0.0.29/values.yaml
rename to incubator/chevereto/0.0.30/values.yaml