Skip to content

Commit e2dec96

Browse files
memodiclaude
andcommitted
Increase daemonset wait timeout to 10 minutes
CI runs showed 4/6 pods ready with 5 minute timeout, indicating image pulls need more time. Increasing to 10 minutes (60×10s) to accommodate slower CI registry pulls and pod scheduling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 545e562 commit e2dec96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -781,8 +781,8 @@ function defaultValue() {
781781
function waitDaemonset(){
782782
echo "Waiting for daemonset pods to be ready..."
783783
# Increase timeout for CI environments where image pulls can be slow
784-
# 30 retries × 10 seconds = 5 minutes total
785-
retries=30
784+
# 60 retries × 10 seconds = 10 minutes total
785+
retries=60
786786
while [[ $retries -ge 0 ]];do
787787
sleep 10
788788
ready=$($K8S_CLI_BIN -n "$namespace" get daemonset netobserv-cli -o jsonpath="{.status.numberReady}")

0 commit comments

Comments
 (0)