Update otc/central-forgejo.think-ahead.cloud/stacks/core/forgejo/values.yaml
This commit is contained in:
parent
ca9b57674f
commit
20ae4f3aa7
1 changed files with 8 additions and 17 deletions
|
@ -2,14 +2,7 @@ redis-cluster:
|
|||
enabled: false
|
||||
|
||||
redis:
|
||||
# TODO: This should be false, but doing so breaks the helm generation of the app.ini file.
|
||||
enabled: true
|
||||
# TODO: BUG in Forgejo inits scripts when master count is zero. But it should be zero to not start an unused redis instance
|
||||
# inside the cluster.
|
||||
# Wait for redis to become avialable...
|
||||
# nc: bad address 'forgejo-redis-headless.gitea.svc.cluster.local'
|
||||
master:
|
||||
count: 1
|
||||
enabled: false
|
||||
|
||||
postgresql:
|
||||
enabled: false
|
||||
|
@ -72,23 +65,21 @@ gitea:
|
|||
|
||||
service:
|
||||
DISABLE_REGISTRATION: true
|
||||
|
||||
other:
|
||||
SHOW_FOOTER_VERSION: false
|
||||
SHOW_FOOTER_TEMPLATE_LOAD_TIME: false
|
||||
|
||||
database:
|
||||
DB_TYPE: sqlite3
|
||||
session:
|
||||
PROVIDER: memory
|
||||
cache:
|
||||
ADAPTER: memory
|
||||
queue:
|
||||
TYPE: level
|
||||
|
||||
server:
|
||||
DOMAIN: 'gitea.central-forgejo.think-ahead.cloud'
|
||||
ROOT_URL: 'https://gitea.central-forgejo.think-ahead.cloud:443'
|
||||
DOMAIN: '{{{ .Env.DOMAIN_GITEA }}}'
|
||||
ROOT_URL: 'https://{{{ .Env.DOMAIN_GITEA }}}:443'
|
||||
|
||||
mailer:
|
||||
ENABLED: true
|
||||
FROM: forgejo@gitea.central-forgejo.think-ahead.cloud
|
||||
FROM: forgejo@{{{ .Env.DOMAIN_GITEA }}}
|
||||
PROTOCOL: smtp
|
||||
SMTP_ADDR: mailhog.mailhog.svc.cluster.local
|
||||
SMTP_PORT: 1025
|
||||
|
|
Loading…
Reference in a new issue