From 4ce89df7ef782f958f0d46119fa09873553f1fe3 Mon Sep 17 00:00:00 2001 From: Nam Chu Hoai Date: Tue, 2 Jan 2024 15:49:10 +0100 Subject: [PATCH] Limit keyfunder pods execution (#3100) ### Description Right now, the key funder process can stall, causing us to stall forever. This PR adds a limit to the job spec --- typescript/infra/helm/key-funder/templates/cron-job.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/typescript/infra/helm/key-funder/templates/cron-job.yaml b/typescript/infra/helm/key-funder/templates/cron-job.yaml index e0fcb09c8..ed2ce3dce 100644 --- a/typescript/infra/helm/key-funder/templates/cron-job.yaml +++ b/typescript/infra/helm/key-funder/templates/cron-job.yaml @@ -10,6 +10,7 @@ spec: jobTemplate: spec: backoffLimit: 0 + activeDeadlineSeconds: 14400 # 60 * 60 * 4 seconds = 4 hours template: spec: restartPolicy: Never