From ffb6b84b3cff443b5c3e2f0257c09b4f39617bfd Mon Sep 17 00:00:00 2001 From: Sagar Patil Date: Tue, 28 Apr 2026 14:09:06 +0530 Subject: [PATCH] fix: revert database.username to hades_user (Backstage overrides this value) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The values.yaml database.username has no effect when Backstage deploys with mysql.enabled=false — Backstage passes the username from the UI. The shared MySQL init SQL needs to create hades_user separately. Co-Authored-By: Claude Opus 4.6 (1M context) --- hades/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hades/values.yaml b/hades/values.yaml index bef2c30..138bdc3 100644 --- a/hades/values.yaml +++ b/hades/values.yaml @@ -123,7 +123,7 @@ database: host: "" # Will be set to mysql.fullname if mysql.enabled=true port: "3306" name: "hades_db" - username: "mysql_user" + username: "hades_user" password: "" # Leave empty to auto-generate # For external database, set mysql.enabled=false and configure above values