From fcced533b0b21348c7931fd0a2fb2c95074852a3 Mon Sep 17 00:00:00 2001 From: torredil Date: Thu, 21 Mar 2024 17:52:43 +0000 Subject: [PATCH] Fix ebs-csi-driver-test CT pod timeout Signed-off-by: torredil --- hack/e2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/e2e/run.sh b/hack/e2e/run.sh index b732e69341..8aa987d333 100755 --- a/hack/e2e/run.sh +++ b/hack/e2e/run.sh @@ -129,7 +129,7 @@ if [[ "${HELM_CT_TEST}" == true ]]; then while true; do if kubectl get pod ebs-csi-driver-test -n kube-system --kubeconfig "${KUBECONFIG}" &>/dev/null; then echo "Pod found, waiting for it to become ready..." - if kubectl wait --for=condition=ready pod ebs-csi-driver-test -n kube-system --timeout=60s --kubeconfig "${KUBECONFIG}"; then + if kubectl wait --for=condition=ready pod ebs-csi-driver-test -n kube-system --timeout=300s --kubeconfig "${KUBECONFIG}"; then echo "Pod is ready, fetching logs..." kubectl logs -f ebs-csi-driver-test -n kube-system -c kubetest2 --kubeconfig "${KUBECONFIG}" fi