57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
---
|
|
# Funkwhale values
|
|
# https://gitlab.com/ananace/charts/-/tree/master/charts/funkwhale
|
|
|
|
|
|
ingress:
|
|
enabled: true
|
|
host: funkwhale.xai-corp.net
|
|
# protocol: https
|
|
tls: # < placing a host in the TLS config will determine what ends up in the cert's subjectAltNames
|
|
- secretName: xai-corp-production-tls
|
|
|
|
replicaCount: 1
|
|
|
|
postgresql:
|
|
## If you already have a Postgresql service you'd like to use, set
|
|
## this to false and adjust the host to use your existing service.
|
|
enabled: true
|
|
|
|
## External Postgresql hostname or IP
|
|
# host: postgresql.postgres
|
|
|
|
auth:
|
|
## Database user
|
|
username: funkwhale
|
|
|
|
## Database password
|
|
password: 18hbc3u19dhqahgoh910y
|
|
|
|
## Database name
|
|
database: funkwhale
|
|
|
|
## Database port
|
|
# service:
|
|
# port: 5432
|
|
|
|
redis:
|
|
## If you already have a Redis service you'd like to use, set
|
|
## this to false and adjust the host to use your existing service.
|
|
enabled: true
|
|
|
|
## External Redis hostname or IP
|
|
# host: redis-master.redis
|
|
|
|
persistence:
|
|
enabled: false
|
|
# existingClaim: data-funkwhale-0
|
|
# storageClass: "-"
|
|
|
|
## Note; Using ReadWriteOnce for persistence will require the addition of
|
|
## a required affinity for the celery worker, as well as the use of only a
|
|
## single api replica.
|
|
##
|
|
## An example is provided for the worker affinity
|
|
accessMode: ReadWriteMany
|
|
size: 1Gi
|