Skip to content

Commit

Permalink
Fix harbor bucket check
Browse files Browse the repository at this point in the history
  • Loading branch information
fjammes committed Oct 29, 2024
1 parent 779ce51 commit 9057b48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wait-minio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ kubectl wait pod/s5cmd --for=condition=Ready --timeout=-1s

while true
do
if kubectl exec s5cmd -- /s5cmd --log debug --no-verify-ssl ls 's3://harbor/*'
kubectl exec -it s5cmd -- /s5cmd --no-verify-ssl ls | grep harbor
if [ $? -eq 0 ];
then
break
else
Expand Down

0 comments on commit 9057b48

Please sign in to comment.