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
|
enabled: false
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
# TODO: This should be false, but doing so breaks the helm generation of the app.ini file.
|
enabled: false
|
||||||
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
|
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -72,23 +65,21 @@ gitea:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
DISABLE_REGISTRATION: true
|
DISABLE_REGISTRATION: true
|
||||||
|
|
||||||
other:
|
other:
|
||||||
SHOW_FOOTER_VERSION: false
|
SHOW_FOOTER_VERSION: false
|
||||||
SHOW_FOOTER_TEMPLATE_LOAD_TIME: false
|
SHOW_FOOTER_TEMPLATE_LOAD_TIME: false
|
||||||
|
|
||||||
database:
|
database:
|
||||||
DB_TYPE: sqlite3
|
DB_TYPE: sqlite3
|
||||||
session:
|
|
||||||
PROVIDER: memory
|
|
||||||
cache:
|
|
||||||
ADAPTER: memory
|
|
||||||
queue:
|
|
||||||
TYPE: level
|
|
||||||
server:
|
server:
|
||||||
DOMAIN: 'gitea.central-forgejo.think-ahead.cloud'
|
DOMAIN: '{{{ .Env.DOMAIN_GITEA }}}'
|
||||||
ROOT_URL: 'https://gitea.central-forgejo.think-ahead.cloud:443'
|
ROOT_URL: 'https://{{{ .Env.DOMAIN_GITEA }}}:443'
|
||||||
|
|
||||||
mailer:
|
mailer:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
FROM: forgejo@gitea.central-forgejo.think-ahead.cloud
|
FROM: forgejo@{{{ .Env.DOMAIN_GITEA }}}
|
||||||
PROTOCOL: smtp
|
PROTOCOL: smtp
|
||||||
SMTP_ADDR: mailhog.mailhog.svc.cluster.local
|
SMTP_ADDR: mailhog.mailhog.svc.cluster.local
|
||||||
SMTP_PORT: 1025
|
SMTP_PORT: 1025
|
||||||
|
|
Loading…
Reference in a new issue