fix(chevereto): remove redis (#2305)

This commit is contained in:
Stavros Kois
2022-03-27 15:13:03 +03:00
committed by GitHub
parent a957b4814b
commit 08d81d8857
2 changed files with 3 additions and 14 deletions
+3 -5
View File
@@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: chevereto
version: 0.0.28
version: 0.0.29
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
@@ -12,6 +12,8 @@ keywords:
- 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
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@@ -20,10 +22,6 @@ dependencies:
name: mariadb
repository: https://truecharts.org/
version: 2.0.12
- condition: redis.enabled
name: redis
repository: https://truecharts.org
version: 2.0.8
maintainers:
- email: info@truecharts.org
name: TrueCharts
-9
View File
@@ -16,7 +16,6 @@ env:
CHEVERETO_DB_NAME: "{{ .Values.mariadb.mariadbUsername }}"
CHEVERETO_DB_USER: "{{ .Values.mariadb.mariadbDatabase }}"
CHEVERETO_DB_PORT: "3306"
CHEVERETO_SESSION_SAVE_HANDLER: "redis"
CHEVERETO_TAG: "free"
# User Defined
CHEVERETO_HTTPS: false
@@ -24,10 +23,6 @@ env:
CHEVERETO_DISABLE_UPDATE_CLI: true
envValueFrom:
CHEVERETO_SESSION_SAVE_PATH:
secretKeyRef:
name: rediscreds
key: url
CHEVERETO_DB_HOST:
secretKeyRef:
name: mariadbcreds
@@ -57,7 +52,3 @@ mariadb:
mariadbUsername: chevereto
mariadbDatabase: chevereto
existingSecret: "mariadbcreds"
redis:
enabled: true
existingSecret: "rediscreds"