Skip to content

Commit

Permalink
allow 60 minutes for postinstallscript tasks to complete (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya authored Jul 25, 2023
1 parent fe5a23a commit 14058bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tgrun/pkg/runner/vmi/embed/runcmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function run_post_install_script() {
return # file does not exist
fi

timeout 30m bash -euxo pipefail /opt/kurl-testgrid/postinstall.sh
timeout 60m bash -euxo pipefail /opt/kurl-testgrid/postinstall.sh
local exit_status="$?"

if [ "$exit_status" -ne 0 ]; then
Expand All @@ -198,7 +198,7 @@ function run_post_upgrade_script() {
return # file does not exist
fi

timeout 30m bash -euxo pipefail /opt/kurl-testgrid/postupgrade.sh
timeout 60m bash -euxo pipefail /opt/kurl-testgrid/postupgrade.sh
local exit_status="$?"

if [ "$exit_status" -ne 0 ]; then
Expand Down

0 comments on commit 14058bd

Please sign in to comment.