Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteregrets committed Jan 12, 2024
1 parent e3114eb commit 6739e61
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,26 @@ jobs:
- name: Run chart-testing (install)
run: helm install mirrord mirrord-operator --wait --set=license.key="1234567aa890"

- name: wait for operator status
run: |
end_time=$((SECONDS+60))
log_file="error.log"
rm -f "$log_file"
while [ $SECONDS -lt $end_time ]; do
if target/debug/mirrord operator status 2>> "$log_file"; then
break
fi
kubectl describe pods -n mirrord
sleep 5
done
if [ $SECONDS -ge $end_time ]; then
echo "Timed out!, error messages:"
cat "$log_file"
exit 1
fi
- name: Install mirrord
run: curl -fsSL https://raw.githubusercontent.com/metalbear-co/mirrord/main/scripts/install.sh | bash

Expand Down

0 comments on commit 6739e61

Please sign in to comment.