chore: Auto-update chart README [skip ci]

This commit is contained in:
truecharts-bot 2022-04-01 07:34:41 +00:00
parent 07fee0c037
commit c8569d1c2a
7 changed files with 808 additions and 1 deletions

View File

@ -1,6 +1,11 @@
# Changelog<br>
<a name="postgresql-7.0.34"></a>
### [postgresql-7.0.34](https://github.com/truecharts/apps/compare/postgresql-7.0.28...postgresql-7.0.34) (2022-04-01)
<a name="postgresql-7.0.28"></a>
### [postgresql-7.0.28](https://github.com/truecharts/apps/compare/postgresql-7.0.27...postgresql-7.0.28) (2022-04-01)

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="ferdi-server-0.0.1"></a>
### ferdi-server-0.0.1 (2022-04-01)
#### Feat
* Add ferdi-server ([#2367](https://github.com/truecharts/apps/issues/2367))

View File

@ -0,0 +1,7 @@
# 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](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "10.6.2"
appVersion: "1.3.2"
dependencies:
- name: common
repository: https://library-charts.truecharts.org

View File

@ -0,0 +1,38 @@
# Introduction
Server for Ferdi that you can re-use to run your own
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://github.com/getferdi/server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://charts.truecharts.org/ | postgresql | 7.0.27 |
| https://library-charts.truecharts.org | common | 9.2.6 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) 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

View File

@ -0,0 +1,60 @@
# 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.APP_URL | string | `"http://localhost:3333"` | |
| env.CONNECT_WITH_FRANZ | bool | `true` | |
| env.DATA_DIR | string | `"/app/data"` | |
| env.DB_CONNECTION | string | `"pg"` | |
| env.DB_DATABASE | string | `"{{ .Values.postgresql.postgresqlDatabase }}"` | |
| env.DB_PORT | string | `"5432"` | |
| env.DB_SSL | bool | `false` | |
| env.DB_USER | string | `"{{ .Values.postgresql.postgresqlUsername }}"` | |
| env.IS_CREATION_ENABLED | bool | `true` | |
| env.IS_DASHBOARD_ENABLED | bool | `true` | |
| env.IS_REGISTRATION_ENABLED | bool | `true` | |
| env.NODE_ENV | string | `"production"` | |
| envValueFrom.DB_HOST.secretKeyRef.key | string | `"plainhost"` | |
| envValueFrom.DB_HOST.secretKeyRef.name | string | `"dbcreds"` | |
| envValueFrom.DB_PASSWORD.secretKeyRef.key | string | `"postgresql-password"` | |
| envValueFrom.DB_PASSWORD.secretKeyRef.name | string | `"dbcreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"getferdi/ferdi-server"` | |
| image.tag | string | `"1.3.2@sha256:b94315a20480e8c47f960590279766c8636c53f9deaaa7697499a51028e33dec"` | |
| installContainers.1-create-key-file.args[0] | string | `"keyfile=\"/app/data/FERDI_APP_KEY.txt\"; if [ ! -f ${keyfile} ]; then\n echo \"No APP_KEY File...\";\n echo \"Creating APP_KEY file...\";\n echo \"${APP_KEY}\" > ${keyfile};\n if [ -f ${keyfile} ];\n then\n echo \"Success!\";\n else\n echo \"Failed.\";\n fi;\nelse\n echo \"APP_KEY File exists. Skipping...\";\nfi;\n"` | |
| installContainers.1-create-key-file.command[0] | string | `"sh"` | |
| installContainers.1-create-key-file.command[1] | string | `"-c"` | |
| installContainers.1-create-key-file.env[0].name | string | `"APP_KEY"` | |
| installContainers.1-create-key-file.env[0].valueFrom.secretKeyRef.key | string | `"APP_KEY"` | |
| installContainers.1-create-key-file.env[0].valueFrom.secretKeyRef.name | string | `"ferdi-server-secrets"` | |
| installContainers.1-create-key-file.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| installContainers.1-create-key-file.volumeMounts[0].mountPath | string | `"/app/data"` | |
| installContainers.1-create-key-file.volumeMounts[0].name | string | `"data"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/app/data"` | |
| persistence.recipes.enabled | bool | `true` | |
| persistence.recipes.mountPath | string | `"/app/recipes"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| postgresql.enabled | bool | `true` | |
| postgresql.existingSecret | string | `"dbcreds"` | |
| postgresql.postgresqlDatabase | string | `"ferdi-server"` | |
| postgresql.postgresqlUsername | string | `"ferdi-server"` | |
| probes.liveness.path | string | `"/health"` | |
| probes.readiness.path | string | `"/health"` | |
| probes.startup.path | string | `"/health"` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `10206` | |
| service.main.ports.main.targetPort | int | `3333` | |
All Rights Reserved - The TrueCharts Project

File diff suppressed because one or more lines are too long