We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6be5db5 + 250c154 commit b630203Copy full SHA for b630203
1 file changed
scripts/deploy-pattern.sh
@@ -1,7 +1,8 @@
1
#!/bin/bash
2
set -o pipefail
3
4
-RUNS=5
+RUNS=10
5
+WAIT=15
6
# Retry five times because the CRD might not be fully installed yet
7
echo -n "Installing pattern: "
8
for i in $(seq 1 ${RUNS}); do \
@@ -13,7 +14,7 @@ for i in $(seq 1 ${RUNS}); do \
13
14
break;
15
else
16
echo -n "."
- sleep 10
17
+ sleep "${WAIT}"
18
fi
19
done
20
0 commit comments