Skip to content

Commit b630203

Browse files
authored
Merge pull request #616 from mbaldessari/wait-more
Wait some more before giving up
2 parents 6be5db5 + 250c154 commit b630203

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/deploy-pattern.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/bash
22
set -o pipefail
33

4-
RUNS=5
4+
RUNS=10
5+
WAIT=15
56
# Retry five times because the CRD might not be fully installed yet
67
echo -n "Installing pattern: "
78
for i in $(seq 1 ${RUNS}); do \
@@ -13,7 +14,7 @@ for i in $(seq 1 ${RUNS}); do \
1314
break;
1415
else
1516
echo -n "."
16-
sleep 10
17+
sleep "${WAIT}"
1718
fi
1819
done
1920

0 commit comments

Comments
 (0)