From 18f277b556337d87a5b9cc216c1f07d7fbd51522 Mon Sep 17 00:00:00 2001 From: Ole-Martin Bratteng <1681525+omBratteng@users.noreply.github.com> Date: Wed, 29 May 2024 10:55:17 +0200 Subject: [PATCH] fix: add missing jwt keys to adhoc deployments (#1945) --- .infra/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.infra/index.ts b/.infra/index.ts index e82daff91..d801a583f 100644 --- a/.infra/index.ts +++ b/.infra/index.ts @@ -231,6 +231,8 @@ if (isAdhocEnv) { 'prometheus.io/scrape': 'true', 'prometheus.io/port': '9464', }, + env: [...jwtEnv], + ...jwtVols, }, ]; @@ -253,6 +255,8 @@ if (isAdhocEnv) { 'prometheus.io/scrape': 'true', 'prometheus.io/port': '9464', }, + env: [...jwtEnv], + ...jwtVols, }); } } else {