increase timeout waiting for k8s from 50s to 200

pull/310/head
Frostebite 2021-12-31 21:25:58 +00:00
parent ca110bb12f
commit bbb3dbeb5a
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2441,7 +2441,7 @@ class KubernetesTaskRunner {
return true; return true;
return false; return false;
}), { }), {
timeout: 500000, timeout: 2000000,
intervalBetweenAttempts: 15000, intervalBetweenAttempts: 15000,
}); });
return success; return success;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -85,7 +85,7 @@ class KubernetesTaskRunner {
return false; return false;
}, },
{ {
timeout: 500000, timeout: 2000000,
intervalBetweenAttempts: 15000, intervalBetweenAttempts: 15000,
}, },
); );