You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
secrets-pgbouncer.yaml parses databaseUrl using urlParse to get host, database, user, password seperately.
but urlParse escapes url and results in incorrect password configuration
if there is databaseUrl like postgresql://{user}:password!123@{host}:{port}/{database_name}
This url transformed in secrete as password%21(base64 decoded) such as url escaped string
Other special characters could make error at urlParse
The text was updated successfully, but these errors were encountered:
Hi, thanks for maintaining this project.
We encountered problem while testing PgBouncer.
flagsmith-charts/charts/flagsmith/templates/secrets-pgbouncer.yaml
Line 14 in 0cf9120
secrets-pgbouncer.yaml parses databaseUrl using urlParse to get host, database, user, password seperately.
but urlParse escapes url and results in incorrect password configuration
if there is databaseUrl like
postgresql://{user}:password!123@{host}:{port}/{database_name}
This url transformed in secrete as
password%21
(base64 decoded) such as url escaped stringOther special characters could make error at urlParse
The text was updated successfully, but these errors were encountered: