Update otc/central-forgejo.think-ahead.cloud/stacks/core/forgejo/values.yaml
This commit is contained in:
parent
20ae4f3aa7
commit
4ccdb3a38d
1 changed files with 13 additions and 3 deletions
|
@ -2,7 +2,14 @@ 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: false
|
||||||
|
# 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
|
||||||
|
@ -47,6 +54,7 @@ gitea:
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
existingSecret: gitea-credential
|
existingSecret: gitea-credential
|
||||||
|
|
||||||
config:
|
config:
|
||||||
storage:
|
storage:
|
||||||
MINIO_ENDPOINT: obs.eu-de.otc.t-systems.com:443
|
MINIO_ENDPOINT: obs.eu-de.otc.t-systems.com:443
|
||||||
|
@ -57,8 +65,10 @@ gitea:
|
||||||
|
|
||||||
queue:
|
queue:
|
||||||
TYPE: redis
|
TYPE: redis
|
||||||
|
|
||||||
session:
|
session:
|
||||||
PROVIDER: redis
|
PROVIDER: redis
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
ADAPTER: redis
|
ADAPTER: redis
|
||||||
|
@ -74,12 +84,12 @@ gitea:
|
||||||
DB_TYPE: sqlite3
|
DB_TYPE: sqlite3
|
||||||
|
|
||||||
server:
|
server:
|
||||||
DOMAIN: '{{{ .Env.DOMAIN_GITEA }}}'
|
DOMAIN: 'gitea.central-forgejo.think-ahead.cloud'
|
||||||
ROOT_URL: 'https://{{{ .Env.DOMAIN_GITEA }}}:443'
|
ROOT_URL: 'https://gitea.central-forgejo.think-ahead.cloud:443'
|
||||||
|
|
||||||
mailer:
|
mailer:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
FROM: forgejo@{{{ .Env.DOMAIN_GITEA }}}
|
FROM: forgejo@gitea.central-forgejo.think-ahead.cloud
|
||||||
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