mirror of
https://github.com/truenas/charts.git
synced 2026-04-14 02:30:53 +08:00
* add `joplin` to `community` apps * add storage and service * add more boilerplat * add some test values * add values * update readme * add basic ui * add initialmeta * add todo * render config * use 1001 * fix probes * reduce permissiosn * fix portal * remove todo * bump common * simplify probe header * add deafult creds * remove redundant values * update wording
48 lines
967 B
YAML
48 lines
967 B
YAML
image:
|
|
repository: joplin/server
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.12.1-beta
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 4000m
|
|
memory: 8Gi
|
|
|
|
joplinConfig:
|
|
baseUrl: http://localhost:30063
|
|
additionalEnvs: []
|
|
|
|
joplinNetwork:
|
|
webPort: 30063
|
|
hostNetwork: false
|
|
|
|
joplinStorage:
|
|
pgData:
|
|
type: ixVolume
|
|
datasetName: pgData
|
|
pgBackup:
|
|
type: ixVolume
|
|
datasetName: pgBackup
|
|
|
|
notes:
|
|
custom: |
|
|
## Default Credentials
|
|
- Username: `admin@localhost`
|
|
- Password: `admin`
|
|
|
|
## Database
|
|
You can connect to the database using the pgAdmin App from the catalog
|
|
|
|
<details>
|
|
<summary>Database Details</summary>
|
|
|
|
- Database: `joplin`
|
|
- Username: `joplin`
|
|
- Password: `{{ .Values.joplinDbPass }}`
|
|
- Host: `{{ .Values.joplinDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
|
|
- Port: `5432`
|
|
|
|
</details>
|
|
{{- $_ := unset .Values "joplinDbPass" }}
|
|
{{- $_ := unset .Values "joplinDbHost" }}
|