From e55f2b7ce1032a406b6774921a7b1021cdfe26ea Mon Sep 17 00:00:00 2001 From: Wulf Thimm Date: Wed, 2 Mar 2022 10:56:23 +0000 Subject: [PATCH] set the timeout for the server deployment to 10min --- .werft/jobs/build/deploy-to-preview-environment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.werft/jobs/build/deploy-to-preview-environment.ts b/.werft/jobs/build/deploy-to-preview-environment.ts index 5842e73ddf6c3d..f280ec056eb5fb 100644 --- a/.werft/jobs/build/deploy-to-preview-environment.ts +++ b/.werft/jobs/build/deploy-to-preview-environment.ts @@ -456,7 +456,7 @@ async function deployToDevWithInstaller(werft: Werft, jobConfig: JobConfig, depl try { werft.log(installerSlices.DEPLOYMENT_WAITING, "Server not ready. Let the waiting...commence!"); - exec(`kubectl -n ${namespace} rollout status deployment/server --timeout=5m`, { slice: installerSlices.DEPLOYMENT_WAITING }); + exec(`kubectl -n ${namespace} rollout status deployment/server --timeout=10m`, { slice: installerSlices.DEPLOYMENT_WAITING }); werft.done(installerSlices.DEPLOYMENT_WAITING); } catch (err) { if (!jobConfig.mainBuild) {