43 lines
969 B
YAML
43 lines
969 B
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
|
|
|
|
|
|
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.example.com
|
|
|
|
auth:
|
|
## Database user
|
|
username: funkwhale
|
|
|
|
## Database password
|
|
password: funkwhale
|
|
|
|
## Database password
|
|
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: false
|
|
|
|
## External Redis hostname or IP
|
|
host: redis.redis
|