From 3b9ce8a9af9c4c1abe40c2b0426da439fd9dcdca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Mu=C3=B1oz?= Date: Wed, 21 Jan 2026 15:00:30 +0000 Subject: [PATCH 1/2] [static] Add missing secretKeyRef in GHA setup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oriol Muñoz --- cluster/pulumi/gha/src/runners.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cluster/pulumi/gha/src/runners.ts b/cluster/pulumi/gha/src/runners.ts index b1e1907d62..b4c604adec 100644 --- a/cluster/pulumi/gha/src/runners.ts +++ b/cluster/pulumi/gha/src/runners.ts @@ -549,8 +549,10 @@ function installK8sRunnerScaleSet( { name: 'PERFORMANCE_TESTS_DB_PASSWORD', valueFrom: { - key: 'postgresPassword', - name: performanceTestsDb.secretName, + secretKeyRef: { + key: 'postgresPassword', + name: performanceTestsDb.secretName, + }, }, }, ], From c0d07d3be6008d70da3f6f5821f7e949f0de4cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Mu=C3=B1oz?= Date: Wed, 21 Jan 2026 15:10:13 +0000 Subject: [PATCH 2/2] [force] duh, it's not gonna work MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oriol Muñoz