configure-gitea init container fails can't connect to external db configured in extra secret #274
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi. I want to use additionalConfigSources that references the external database. If I put just additionalConfigSources then Helm chart returns error:
Because I have postgres: false and no database configuration in the values. The DB_TYPE comes from the additionalConfigSources's secret.
I add:
Now I get the error:
Because HOST comes from the additionalConfigSources's secret.
I add:
The init container fails with:
In the app.ini I see the correct db config:
How to define database config in additionalConfigSources? It seems impossible currently. At least DB_TYPE and HOST can not come from additionalConfigSources.
Edit:
The function test_db_connection() should really read the values from the app.ini because that's your source of truth. https://gitea.com/gitea/helm-chart/src/branch/master/templates/gitea/init.yaml#L45
Edit:
Gitea Chart 5.0.0
Uff. That shouldn't happen. Could you share your values.yaml and the related additionalConfigSources (redacted secrets).
You want to use sqlite, IIRC?
Sorry I got sidetracked. Here is the values file:
The secret
gitea-database-config
:Chart:
What do you mean by this? No I want to use postgres.
Hi @devent. Sorry for that question. I mis-read your initial comment. Thank you for the values btw.
Is my assumption correct, that the posted values work right now as a workaround for this problem?
TL;DR;
This is an unrevealed bug inside the template rendering of this chart. For now, if using an external database,
DB_TYPE
andDB_HOST
need to be defined inside the values as inline values. Otherwise the init container won't work. You might duplicate these values inside the "additionalConfigSources".Long explanation:
Prior to that "additionalConfigSources" feature the inline configuration always contained at least
DB_TYPE
andDB_HOST
pointing to that external database. These values seem to be essential for the database connection check inside the init container. The helper method relies on these inline fields during template rendering and creates incorrect scripts for the init container. Now with the "additionalConfigSources" feature the existence ofDB_TYPE
andDB_HOST
are not ensured and kinda breaks.Setting
DB_TYPE
andDB_HOST
to empty values as inline values generates an init script with no database host defined for the database check. That's why it breaks thenc
command.Yes, the workaround works. The inconvenience is that I need to dublicate the value for
HOST
because it's already defined in the secret.Btw, the secret comes from the Crunchy Postgres Operator.
https://access.crunchydata.com/documentation/postgres-operator/v5/architecture/user-management/