From f10f0f16e9cedcf19d235dec00792aef35c0acaa Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Mon, 13 Jul 2026 13:15:05 +0200 Subject: [PATCH] GHA: Increase kbs-client install timeout to 20 minutes The `kbs-client` installation step was timing out at 10 minutes on the downgraded zVSI profile (4 vCPU x 8 GB). Double the timeout to 20 minutes to accommodate the slower build/download speed on this instance profile. Signed-off-by: Hyounggyu Choi --- .github/workflows/run-k8s-tests-on-zvsi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-k8s-tests-on-zvsi.yaml b/.github/workflows/run-k8s-tests-on-zvsi.yaml index d66590b881..28300a9c5e 100644 --- a/.github/workflows/run-k8s-tests-on-zvsi.yaml +++ b/.github/workflows/run-k8s-tests-on-zvsi.yaml @@ -134,7 +134,7 @@ jobs: if: ${{ startsWith(matrix.vmm, 'qemu-coco-dev') }} - name: Install `kbs-client` - timeout-minutes: 10 + timeout-minutes: 20 run: bash tests/integration/kubernetes/gha-run.sh install-kbs-client if: ${{ startsWith(matrix.vmm, 'qemu-coco-dev') }}