From 4410df7233172009bee0294cb5780cf4e90e03fd Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Thu, 29 Feb 2024 22:03:24 -0300 Subject: [PATCH] gha: increase timeout of KBS steps The step to deploy KBS on run-k8s-tests-on-aks workflow should be increased so that there is enough time for checking the service is healthy and exposed. Likewise the step that builds the kbs-client which requires enough time to build the executable. Fixes #9058 Signed-off-by: Wainer dos Santos Moschetta --- .github/workflows/run-k8s-tests-on-aks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-k8s-tests-on-aks.yaml b/.github/workflows/run-k8s-tests-on-aks.yaml index 61482db30a..9d937d1150 100644 --- a/.github/workflows/run-k8s-tests-on-aks.yaml +++ b/.github/workflows/run-k8s-tests-on-aks.yaml @@ -110,12 +110,12 @@ jobs: - name: Deploy CoCo KBS if: env.KBS == 'true' - timeout-minutes: 5 + timeout-minutes: 10 run: bash tests/integration/kubernetes/gha-run.sh deploy-coco-kbs - name: Install `kbs-client` if: env.KBS == 'true' - timeout-minutes: 5 + timeout-minutes: 10 run: bash tests/integration/kubernetes/gha-run.sh install-kbs-client - name: Run tests