Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix ready check for server
Browse files Browse the repository at this point in the history
  • Loading branch information
samos123 committed Oct 2, 2023
1 parent 5bbfb1c commit 9ad92f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kubectl apply -f ${repo}/examples/${example}/base-server.yaml
# Wait until both are ready
# TODO: Consider adding common "Ready" condition to make this check easier.
kubectl wait --for=jsonpath='{.status.ready}'=true models --all --timeout 720s
kubectl wait --for=condition=Ready pod -l server=${example} --all --timeout 720s
kubectl wait --for=jsonpath='{.status.ready}'=true servers --all --timeout 720s

# Forward ports to localhost
kubectl port-forward service/$example-server 8080:8080 &
Expand Down

0 comments on commit 9ad92f6

Please sign in to comment.