* 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
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
image:
|
|
repository: ghcr.io/crazy-max/firefox-syncserver
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: 1.8.0@sha256:ab1a959d8105c478f0f1523c8c3bbdc53bb8d44f325501b93297bc80cf627da6
|
|
|
|
secret:
|
|
FF_SYNCSERVER_SECRET: "changeme"
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
allowPrivilegeEscalation: true
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
TZ: "America/Los_Angeles"
|
|
PUID: 568
|
|
FF_SYNCSERVER_PUBLIC_URL: "firefox-syncserver.192.168.1.189.nip.io"
|
|
FF_SYNCSERVER_FORCE_WSGI_ENVIRON: true
|
|
FF_SYNCSERVER_ACCESSLOG: false
|
|
FF_SYNCSERVER_LOGLEVEL: "info"
|
|
FF_SYNCSERVER_ALLOW_NEW_USERS: true
|
|
FF_SYNCSERVER_FORWARDED_ALLOW_IPS: "*"
|
|
|
|
envValueFrom:
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: url
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 5000
|
|
targetPort: 5000
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: firefox-syncserver
|
|
postgresqlDatabase: firefox-syncserver
|