|
15 | 15 | jobs: |
16 | 16 | build: |
17 | 17 | runs-on: ubuntu-latest |
18 | | - timeout-minutes: 15 |
| 18 | + timeout-minutes: 25 |
19 | 19 | steps: |
20 | 20 | - name: Checkout kserve/models-web-app |
21 | | - uses: actions/checkout@v4 |
| 21 | + uses: actions/checkout@v5 |
22 | 22 |
|
23 | | - - name: Checkout kubeflow/manifests at one-line fix SHA |
24 | | - uses: actions/checkout@v4 |
| 23 | + - name: Checkout kubeflow/manifests |
| 24 | + uses: actions/checkout@v5 |
25 | 25 | with: |
26 | | - repository: danish9039/manifests |
27 | | - ref: fee48d517e04c333163c6c06e4c799ee34547862 |
| 26 | + repository: kubeflow/manifests |
28 | 27 | path: kubeflow-manifests |
29 | 28 |
|
30 | 29 | - name: Install KinD, Create KinD cluster and Install kustomize |
@@ -58,24 +57,16 @@ jobs: |
58 | 57 | working-directory: kubeflow-manifests |
59 | 58 | run: ./tests/knative_install.sh |
60 | 59 |
|
61 | | - - name: Install KServe core from kubeflow/manifests |
62 | | - run: | |
63 | | - cd kubeflow-manifests |
64 | | - set +e |
65 | | - for i in 1 2 3; do |
66 | | - kustomize build applications/kserve/kserve | kubectl apply --server-side --force-conflicts -f - && break |
67 | | - sleep 10 |
68 | | - done |
69 | | - set -e |
70 | | - kubectl wait --for=condition=established --timeout=60s \ |
71 | | - crd/clusterservingruntimes.serving.kserve.io |
| 60 | + - name: Install KServe (core + ClusterServingRuntimes) |
| 61 | + working-directory: kubeflow-manifests |
| 62 | + run: ./tests/kserve_install.sh |
72 | 63 |
|
73 | | - - name: Install KServe Models Web App from THIS PR manifests |
| 64 | + - name: Override models web app with THIS PR manifests |
74 | 65 | run: | |
75 | 66 | kustomize build manifests/kustomize/overlays/kubeflow | \ |
76 | 67 | kubectl apply --server-side --force-conflicts -f - |
77 | | - kubectl wait --for=condition=Ready pods --all --all-namespaces \ |
78 | | - --timeout=600s --field-selector=status.phase!=Succeeded |
| 68 | + kubectl rollout status deployment/kserve-models-web-application \ |
| 69 | + -n kubeflow --timeout=120s |
79 | 70 | kubectl wait --for=condition=Available \ |
80 | 71 | deployment/kserve-models-web-application \ |
81 | 72 | -n kubeflow --timeout=60s |
|
85 | 76 | run: ./tests/kubeflow_profile_install.sh |
86 | 77 |
|
87 | 78 | - name: Setup python 3.12 |
88 | | - uses: actions/setup-python@v4 |
| 79 | + uses: actions/setup-python@v5 |
89 | 80 | with: |
90 | 81 | python-version: 3.12 |
91 | 82 |
|
@@ -125,7 +116,7 @@ jobs: |
125 | 116 |
|
126 | 117 | - name: Upload Diagnostic Logs |
127 | 118 | if: always() |
128 | | - uses: actions/upload-artifact@v4 |
| 119 | + uses: actions/upload-artifact@v5 |
129 | 120 | with: |
130 | 121 | name: kserve-models-web-app-test-logs |
131 | 122 | path: logs/ |
0 commit comments