Skip to content
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
5 changes: 4 additions & 1 deletion .github/scripts/route_buildkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ fi
# --- CONFIGURATION ---
NAMESPACE="buildkit"
PORT="1234"
MAX_POD_CHECK=10
# Highest buildkit pod ordinal to probe, exclusive. Must be >= the KEDA
# maxReplicaCount for the buildkit StatefulSet, or pods above this ordinal are
# never discovered and sit idle while builds queue on the pods below it.
MAX_POD_CHECK=${MAX_POD_CHECK:-16}
Comment thread
dmitry-tokarev-nv marked this conversation as resolved.
# ---------------------

if ! command -v nslookup &> /dev/null; then
Expand Down
Loading