diff --git a/charts/stable/grist/Chart.yaml b/charts/stable/grist/Chart.yaml index 26b1c89a79f..be435d437de 100644 --- a/charts/stable/grist/Chart.yaml +++ b/charts/stable/grist/Chart.yaml @@ -4,6 +4,10 @@ dependencies: - name: common repository: https://library-charts.truecharts.org version: 9.3.24 +- condition: redis.enabled + name: redis + repository: https://charts.truecharts.org + version: 2.0.76 description: Grist is a modern relational spreadsheet. It combine the flexibility of a spreadsheet with the robustness of a database to organize your data. home: https://github.com/truecharts/apps/tree/master/charts/stable/grist icon: https://truecharts.org/_static/img/appicons/grist.png @@ -21,7 +25,7 @@ sources: - https://hub.docker.com/r/gristlabs/grist - https://github.com/gristlabs/grist-core - https://support.getgrist.com/ -version: 1.0.25 +version: 1.0.26 annotations: truecharts.org/catagories: | - productivity diff --git a/charts/stable/grist/values.yaml b/charts/stable/grist/values.yaml index f209ffe4036..db48b8213b7 100644 --- a/charts/stable/grist/values.yaml +++ b/charts/stable/grist/values.yaml @@ -16,12 +16,11 @@ env: HOME_PORT: "{{ .Values.service.api.ports.api.port }}" GRIST_DEFAULT_EMAIL: "user@mydomain.com" -# https://github.com/gristlabs/grist-core/issues/128 -# envValueFrom: -# REDIS_URL: -# secretKeyRef: -# name: rediscreds -# key: url +envValueFrom: + REDIS_URL: + secretKeyRef: + name: rediscreds + key: url service: main: @@ -42,6 +41,6 @@ persistence: enabled: true mountPath: "/persist" -# redis: -# enabled: true -# existingSecret: "rediscreds" +redis: + enabled: true + existingSecret: "rediscreds"