Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

K8SPG-651: wait longer for migration-backup-s3-pgbackrest-restore #1045

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion e2e-tests/tests/migration-backup-s3/09-deploy-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ commands:
' - |
kubectl -n $NAMESPACE apply -f -
sleep 5
wait_time=20
retry=0
until [[ $(kubectl get job -n $NAMESPACE | grep 'migration-backup-s3-pgbackrest-restore') ]]; do
sleep 1
let retry+=1
if [[ $retry -ge $wait_time ]]; then
exit 1
fi
done
kubectl -n $NAMESPACE wait --for=condition=Complete job/migration-backup-s3-pgbackrest-restore --timeout=360s
timeout: 300
Loading