Files
truecharts/docs/apps/dev/statping/helm-values.md
Kjeld Schouten-Lebbing a1c12c64e3 feat(apps): Add more Apps using postgresql (#1136)
* feat(apps): Add more Apps using postgresql

Squashed commit:

move apps - dev to incubator (+29 squashed commit)

[e306948ef] bump postgresql

[d22c2cc62] bump common

[cc5412370] remove ix_values.yaml

[ca02334e6] Sync last env's and secrets

[34b9d2af1] update gui on ff-syncserver

[8dc32c07c] Add description on persistence

[3ee0e4dac] Update secrets labels

[4192e3af5] Update default-ports

[d88de9fbc] fixedEnv on top...

[61363ea19] tt-rss

[8a124605e] traccar

[6de23ed28] teedy

[402e3916d] statping

[f8da66a8c] shiori

[c58d98c29] recipes

[2390929fc] openkm

[ca4cfcf75] odoo

[34a8e0e96] fixedEnv on top

[ec3c53f7b] miniflux

[b47aab805] librespeed

[f7252eeed] whoops

[d4e312ff6] kanboard

[c9e32f3eb] joplin-server

[4a216a442] wikijs

[8a529ba57] gotify

[1130943a7] ff-sync

[f1b43a783] etherpad

[7365fe5da] dsmr-reader

[ea7a6751e] babybuddy (+1 squashed commits)

* enable varrun on librespeed

* librespeed no readonly root

* run librespeed as root
2021-10-19 14:20:06 +02:00

38 lines
2.5 KiB
Markdown

# 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 | object | See below | environment variables. See [application docs](https://github.com/statping/statping/wiki/Config-with-.env-File) for more details. |
| env.DESCRIPTION | string | `"This is a Statping instance deployed as Helm chart"` | Description of the Statping instance |
| env.DISABLE_LOGS | bool | `false` | Disable logs from appearing and writing to disk |
| env.NAME | string | `"Statping Example"` | Name of the Statping instance |
| env.TZ | string | `"UTC"` | Set the container timezone |
| env.USE_CDN | bool | `false` | Use CDN for static context from third-parties |
| env.VIRTUAL_HOST | string | `""` | External URL you use to connect to the statping (the one you enter in your browser) |
| envTpl.DB_CONN | string | `"postgres"` | |
| envTpl.DB_DATABASE | string | `"{{ .Values.postgresql.postgresqlDatabase }}"` | |
| envTpl.DB_PORT | string | `"5432"` | |
| envTpl.DB_USER | string | `"{{ .Values.postgresql.postgresqlUsername }}"` | |
| envTpl.POSTGRES_SSLMODE | string | `"disable"` | |
| envValueFrom.DB_HOST.secretKeyRef.key | string | `"plainhost"` | |
| envValueFrom.DB_HOST.secretKeyRef.name | string | `"dbcreds"` | |
| envValueFrom.DB_PASS.secretKeyRef.key | string | `"postgresql-password"` | |
| envValueFrom.DB_PASS.secretKeyRef.name | string | `"dbcreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"statping/statping"` | image repository |
| image.tag | string | `"v0.90.74@sha256:d55c3ea8b64411199f7952fc6e00b2090bb6f1691a1d197a2a7e237e92384523"` | image tag |
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| postgresql | object | See values.yaml | Enable and configure postgresql database subchart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. |
All Rights Reserved - The TrueCharts Project