From bfeb5925f2f9cbb77222f71512b6ab7f841cd07a Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 10 Mar 2026 13:09:54 +0100 Subject: [PATCH] Grant gitlab-runner user access to perftestsdb --- m/hut/postgresql.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/m/hut/postgresql.nix b/m/hut/postgresql.nix index fc86d7ab..c6312fea 100644 --- a/m/hut/postgresql.nix +++ b/m/hut/postgresql.nix @@ -8,12 +8,14 @@ { name = "anavarro"; ensureClauses.superuser = true; } { name = "rarias"; ensureClauses.superuser = true; } { name = "grafana"; } + { name = "gitlab-runner"; } ]; authentication = '' - #type database DBuser auth-method - local perftestsdb rarias trust - local perftestsdb anavarro trust - local perftestsdb grafana trust + #type database DBuser auth-method + local perftestsdb rarias trust + local perftestsdb anavarro trust + local perftestsdb grafana trust + local perftestsdb gitlab-runner trust ''; }; }