From 48ff7bb43934564400c87a45c78cf8bd822c8ed6 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 27 Apr 2026 13:23:54 +0200 Subject: [PATCH] Add database and helm chart Signed-off-by: Nikolai Rodionov --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 6de2b45..d93ccfc 100644 --- a/main.go +++ b/main.go @@ -115,7 +115,7 @@ func server(ctx context.Context, params Serve) error { }() log.Info("Opening a database connection") - db, err := sql.Open("postgres", "postgres://softplayer:qwertyu9@localhost:30432/softplayer?sslmode=disable") + db, err := sql.Open("postgres", params.DBConnectionString) if err != nil { log.Error(err, "Couldn't start a database driver") return err