mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-31 05:49:04 +00:00
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
# Default values for joplin-server.
|
|
|
|
image:
|
|
# -- joplin-server image
|
|
repository: joplin/server
|
|
# -- joplin-server image tag
|
|
tag: 1.7.2
|
|
# joplin-server image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
service:
|
|
port:
|
|
# -- Kubernetes port where the GUI is exposed
|
|
port: 22300
|
|
|
|
env:
|
|
# -- joplin-server base URL
|
|
APP_BASE_URL: https://joplin.domain
|
|
# -- joplin-server listening port (same as Service port)
|
|
APP_PORT: 22300
|
|
# -- Use pg for postgres
|
|
# DB_CLIENT : pg
|
|
# -- Postgres DB Host
|
|
# POSTGRES_HOST : db
|
|
# -- Postgres DB port
|
|
# POSTGRES_PORT : 5432
|
|
# -- Postgres DB name
|
|
# POSTGRES_DATABASE : joplin
|
|
# -- Postgres DB Username
|
|
# POSTGRES_USER : joplin
|
|
# -- Postgres DB password
|
|
# POSTGRES_PASSWORD : password
|
|
|
|
# -- Node labels for pod assignment of the GUI
|
|
nodeSelector: {}
|
|
|
|
# -- Toleration labels for pod assignment of the GUI
|
|
tolerations: []
|
|
|
|
# -- Affinity settings for pod assignment of the GUI
|
|
affinity: {}
|
|
|
|
# -- Pod annotations
|
|
podAnnotations: {}
|