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: 3 additions & 2 deletions common/scripts/deploy-pattern.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash
set -o pipefail

RUNS=5
RUNS=10
WAIT=15
# Retry five times because the CRD might not be fully installed yet
echo -n "Installing pattern: "
for i in $(seq 1 ${RUNS}); do \
Expand All @@ -13,7 +14,7 @@ for i in $(seq 1 ${RUNS}); do \
break;
else
echo -n "."
sleep 10
sleep "${WAIT}"
fi
done

Expand Down
Loading