Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-06-04 10:10:29 +00:00
parent 036f3d9e22
commit 2e809d98c0
15 changed files with 309 additions and 40 deletions

View File

@ -1,6 +0,0 @@
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.3.24
digest: sha256:d029f09f902b1144d20ea6ed70212fc5a521092f81a3d06b3446935491b85789
generated: "2022-05-31T19:52:18.230102005Z"

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="grist-1.0.26"></a>
### [grist-1.0.26](https://github.com/truecharts/apps/compare/grist-1.0.25...grist-1.0.26) (2022-06-04)
#### Fix
* re-enable redis ([#2829](https://github.com/truecharts/apps/issues/2829))
<a name="grist-1.0.25"></a>
### [grist-1.0.25](https://github.com/truecharts/apps/compare/grist-1.0.24...grist-1.0.25) (2022-05-31)
@ -88,12 +97,3 @@
### [grist-1.0.18](https://github.com/truecharts/apps/compare/grist-1.0.17...grist-1.0.18) (2022-05-05)
#### Chore
* update helm general non-major helm releases ([#2612](https://github.com/truecharts/apps/issues/2612))
<a name="grist-1.0.17"></a>
### [grist-1.0.17](https://github.com/truecharts/apps/compare/grist-1.0.16...grist-1.0.17) (2022-04-26)
#### Chore

View File

@ -0,0 +1,9 @@
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.3.24
- name: redis
repository: https://charts.truecharts.org
version: 2.0.76
digest: sha256:0ba7ba9a6d51c3784af40aa122918df74c807ce2e39ee035186e41b704808893
generated: "2022-06-04T09:59:35.158189175Z"

View File

@ -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

View File

@ -19,6 +19,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
| https://charts.truecharts.org | redis | 2.0.76 |
| https://library-charts.truecharts.org | common | 9.3.24 |
## Installing the Chart

Binary file not shown.

View File

@ -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"

File diff suppressed because one or more lines are too long