Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-03-06 14:10:29 +00:00
parent cb72612c93
commit b3dea1b693
12 changed files with 610 additions and 46 deletions
+83
View File
@@ -0,0 +1,83 @@
# Changelog<br>
<a name="grist-1.0.3"></a>
### [grist-1.0.3](https://github.com/truecharts/apps/compare/grist-1.0.2...grist-1.0.3) (2022-03-06)
#### Feat
* Move to stable ([#2037](https://github.com/truecharts/apps/issues/2037))
<a name="grist-1.0.2"></a>
### [grist-1.0.2](https://github.com/truecharts/apps/compare/grist-1.0.0...grist-1.0.2) (2022-03-06)
#### Fix
* fix some apps and move some apps to stable
* can't have boolean under secret ([#2031](https://github.com/truecharts/apps/issues/2031))
<a name="grist-1.0.0"></a>
### [grist-1.0.0](https://github.com/truecharts/apps/compare/grist-0.0.6...grist-1.0.0) (2022-03-03)
#### Chore
* remove fixed env from questions.yaml
* update helm general major helm releases ([#2021](https://github.com/truecharts/apps/issues/2021))
#### Fix
* BREAKING CHANGE Move some env-vars outside of env section ([#2010](https://github.com/truecharts/apps/issues/2010))
* fix deemix questions.yaml
<a name="grist-0.0.6"></a>
### [grist-0.0.6](https://github.com/truecharts/apps/compare/grist-0.0.5...grist-0.0.6) (2022-03-02)
#### Fix
* update image reference ([#2000](https://github.com/truecharts/apps/issues/2000))
<a name="grist-0.0.5"></a>
### [grist-0.0.5](https://github.com/truecharts/apps/compare/grist-0.0.3...grist-0.0.5) (2022-03-02)
#### Chore
* update helm general non-major helm releases ([#1999](https://github.com/truecharts/apps/issues/1999))
#### Fix
* enable secondary ports ([#1989](https://github.com/truecharts/apps/issues/1989))
<a name="grist-0.0.3"></a>
### [grist-0.0.3](https://github.com/truecharts/apps/compare/grist-0.0.2...grist-0.0.3) (2022-02-28)
#### Chore
* update image ([#1985](https://github.com/truecharts/apps/issues/1985))
<a name="grist-0.0.2"></a>
### [grist-0.0.2](https://github.com/truecharts/apps/compare/grist-0.0.1...grist-0.0.2) (2022-02-28)
#### Chore
* update docker general non-major ([#1980](https://github.com/truecharts/apps/issues/1980))
<a name="grist-0.0.1"></a>
### grist-0.0.1 (2022-02-27)
#### Feat
* Add grist ([#1972](https://github.com/truecharts/apps/issues/1972))
+8
View File
@@ -0,0 +1,8 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.
+33
View File
@@ -0,0 +1,33 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.GRIST_DEFAULT_EMAIL | string | `"user@mydomain.com"` | |
| env.HOME_PORT | string | `"{{ .Values.service.api.ports.api.port }}"` | |
| env.PORT | string | `"{{ .Values.service.main.ports.main.port }}"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/grist"` | |
| image.tag | string | `"v0.7.5@sha256:1167922bec1f019de3cc0463f97f1bd3cad1d104ceee4d31e26d74493d6f79fc"` | |
| persistence.persist.enabled | bool | `true` | |
| persistence.persist.mountPath | string | `"/persist"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.api.enabled | bool | `true` | |
| service.api.ports.api.enabled | bool | `true` | |
| service.api.ports.api.port | int | `10164` | |
| service.api.ports.api.targetPort | int | `10164` | |
| service.main.ports.main.port | int | `10163` | |
| service.main.ports.main.targetPort | int | `10163` | |
All Rights Reserved - The TrueCharts Project
+39
View File
@@ -0,0 +1,39 @@
# Introduction
Grist is a modern relational spreadsheet. It combine the flexibility of a spreadsheet with the robustness of a database to organize your data.
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://hub.docker.com/r/gristlabs/grist>
* <https://github.com/gristlabs/grist-core>
* <https://support.getgrist.com/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 9.0.0 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project
File diff suppressed because one or more lines are too long