Issue
Inconsistency between the environment variable DATABASE_PASSWORD (used in langfuse-web and langfuse-worker pods) and secret key used in subcharts of postgres.
Cause
The subchart of postgres modifies the secret key, by pre-pending the user name to the key. By default the username is postgres so it prepends with postgres-.
This results in a mismatch with the environment variables used in the langfuse-web and langfuse-worker pods, which only uses the userPasswordKey.
Suggestion
Prepend the PostgreSQL user name to the password's key in the environment variable DATABASE_PASSWORD: <username>-<userPasswordKey>.