* chore(deps): update helm chart common to v6.3.1 * Fix KMS and Unifi * try a collabora fix * Temporarily disable nzbget probes waiting for next common * try if firefly-iii wants https * Fix a linting error on nzbget and path issues with jackett/prototypeGUI also disable for podgrab for now (just like NZBget, till next common) * try polling the login path for firefly * fireflyiii back to http * APP_KEY typo and useless security context * again * fireflyiii fix broken db setup Co-authored-by: Renovate Bot <bot@renovateapp.com>
83 lines
1.3 KiB
YAML
83 lines
1.3 KiB
YAML
# Default values for fireflyIII.
|
|
|
|
image:
|
|
repository: fireflyiii/core
|
|
pullPolicy: IfNotPresent
|
|
tag: version-5.5.12
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
podSecurityContext:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
fsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
tcp:
|
|
enabled: true
|
|
type: ClusterIP
|
|
ports:
|
|
tcp:
|
|
enabled: true
|
|
port: 51080
|
|
protocol: TCP
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/login"
|
|
|
|
readiness:
|
|
path: "/login"
|
|
|
|
startup:
|
|
path: "/login"
|
|
|
|
env:
|
|
DB_USERNAME: firefly
|
|
DB_DATABASE: firefly
|
|
DB_CONNECTION: pgsql
|
|
DB_PORT: 5432
|
|
APP_KEY: AGcfkCUS233ZWmBXztYbdyCs2u7kkz55
|
|
|
|
envValueFrom:
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql_host
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/var/www/html/storage/upload"
|
|
type: emptyDir
|
|
|
|
db:
|
|
forceName: "db"
|
|
enabled: true
|
|
type: emptyDir
|
|
|
|
dbbackup:
|
|
enabled: true
|
|
type: emptyDir
|
|
|
|
# Enabled postgres
|
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: firefly
|
|
postgresqlDatabase: firefly
|
|
existingSecret: dbcreds
|
|
persistence:
|
|
enabled: false
|
|
existingClaim: db
|