Skip to content

Commit

Permalink
Merge pull request #1976 from torredil/fix-ct-ci
Browse files Browse the repository at this point in the history
Fix `ebs-csi-driver-test` CT pod timeout
  • Loading branch information
k8s-ci-robot committed Mar 21, 2024
2 parents 619c865 + fcced53 commit ad39338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/e2e/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad39338

Please sign in to comment.