From 853bf608be4b35d144c9bfbec517bf29f41ccf3c Mon Sep 17 00:00:00 2001 From: iarspider Date: Wed, 28 Feb 2024 08:54:12 +0100 Subject: [PATCH] Update jobs-config.json: add "disk full" error with action nodeOff @aandvalenzuela --- jenkins/parser/jobs-config.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jenkins/parser/jobs-config.json b/jenkins/parser/jobs-config.json index 4e668d55e79e..26b6d05af3cb 100644 --- a/jenkins/parser/jobs-config.json +++ b/jenkins/parser/jobs-config.json @@ -285,6 +285,12 @@ "mount hook function failure.*doesn't exist in container" ], "action": "nodeOff" + }, + "diskFullFailure": { + "errorStr": [ + "No space left on device" + ], + "action": "nodeOff" } } }