Created
January 29, 2026 15:11
-
-
Save liweinan/9d65abf9759370f141d4eec93fa7de17 to your computer and use it in GitHub Desktop.
quick-test.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Quick test script for OCPBUGS-69923 | |
| # Usage: ./quick-test.sh [pull-secret-file] [iterations] | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| PULL_SECRET="${1:-$HOME/works/oc-swarm/openshift-versions/auth.json}" | |
| ITERATIONS="${2:-5}" | |
| echo "Quick Zone Consistency Test" | |
| echo "============================" | |
| echo "Installer: $SCRIPT_DIR/openshift-install" | |
| echo "Pull Secret: $PULL_SECRET" | |
| echo "Iterations: $ITERATIONS" | |
| echo "" | |
| exec "$SCRIPT_DIR/test-zone-consistency-local.sh" \ | |
| "$SCRIPT_DIR/openshift-install" \ | |
| "$PULL_SECRET" \ | |
| "qe.devcluster.openshift.com" \ | |
| "us-east-1" \ | |
| "$ITERATIONS" |
Author
liweinan
commented
Jan 29, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment