* chore(apps): remove persistence size from values * remove type from persistence from values.yaml * remove accessMode from persistence from values * devices dont user persistence * remove empty lines * restore accessMode in common, whoops * quote all mountPaths * convert `'` to `"` * fix empty lines * add missing mountPath on values * add missing persistence on values * fix var name on quetsions * remove disabled persistence from values which are not even defined in questions * remove more type, accessMode and size * mountpath -> mountPath * mounthPath -> mountPath * booksonic-air persistence cleanup * remove empty lines * fix mountPath * remove unused persistence * teamspeak3 fix var name in persistence * remove persistence that will probably be user defined storage * remove persistence that will probably be user defined storage * add missing persistence from values * fix openldap volclaim * remove persistence that will probably be user defined storage * add missing persistence from values * fix path ff3 * fix mountPath * add missing persistence from values * remove persistence that will probably be user defined storage * revert changes in volClaimTemplate * remove varrun from questions * fix and cleanup questions postgres * calm down CI * ci only value
63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
image:
|
|
# -- image repository
|
|
repository: joplin/server
|
|
# -- image tag
|
|
tag: 2.5.1@sha256:5bd976f19f883352bacad74767237471941cb35b2ded96a1afeeb7168b1e08d8
|
|
# -- image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
# -- environment variables. See [image docs](https://github.com/laurent22/joplin) for more details.
|
|
# @default -- See below
|
|
env:
|
|
# -- Set the container timezone
|
|
TZ: UTC
|
|
# -- joplin-server base URL
|
|
APP_BASE_URL: https://joplin.domain
|
|
# -- joplin-server listening port (same as Service port)
|
|
APP_PORT: 22300
|
|
|
|
envTpl:
|
|
DB_CLIENT: "pg"
|
|
POSTGRES_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
POSTGRES_PORT: "5432"
|
|
|
|
envValueFrom:
|
|
POSTGRES_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
POSTGRES_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
# -- Configures service settings for the chart.
|
|
# @default -- See values.yaml
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 22300
|
|
targetPort: 22300
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
# -- Enable and configure postgresql database subchart under this key.
|
|
# @default -- See values.yaml
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: joplin
|
|
postgresqlDatabase: joplin
|