Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing kserve ci #3292

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions .github/workflows/kserve_cpu_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ name: KServe CPU Nightly Tests
on:
workflow_dispatch:
# runs everyday at 5:15am
schedule:
- cron: '15 5 * * *'
# schedule:
# - cron: '15 5 * * *'
push:
branches: 'kserve_ci'


jobs:
kserve-cpu-tests:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/kserve/tests/scripts/test_mnist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function deploy_cluster() {
function make_cluster_accessible() {
SERVICE_NAME="$1"
URL="$2"
wait_for_inference_service 300 5 "$1"
wait_for_inference_service 600 10 "$1"
SERVICE_HOSTNAME=$(kubectl get inferenceservice ${SERVICE_NAME} -o jsonpath='{.status.url}' | cut -d "/" -f 3)
wait_for_port_forwarding 5
echo "Make inference request"
Expand Down
Loading