From 26d9e3d43228eceef2ba69af7e1790d5ac9ce33c 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Antoni Navarro Reviewed-by: Aleix Boné --- 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 ''; }; }