Skip to content
Merged
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: 4 additions & 3 deletions .github/workflows/full_kubeflow_integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
name: Kubeflow Installation and Testing
if: ${{ github.repository == 'kubeflow/manifests' }}
runs-on:
labels: ubuntu-latest-16-cores
timeout-minutes: 60
labels: oracle-vm-16cpu-64gb-x86-64
# labels: ubuntu-latest-16-cores
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -62,7 +63,7 @@
- name: Install KServe
run: ./tests/kserve_install.sh

#- name: Install Pipelines

Check warning on line 66 in .github/workflows/full_kubeflow_integration_test.yaml

View workflow job for this annotation

GitHub Actions / format_YAML_files

66:6 [comments] missing starting space in comment
# run: ./tests/pipelines_install.sh

- name: Install Pipelines with SeaweedFS
Expand Down Expand Up @@ -105,7 +106,7 @@
run: chmod u+x tests/*.sh && ./tests/spark_install.sh

- name: Wait for All Pods to be Ready
run: kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 60s --field-selector=status.phase!=Succeeded
run: kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 90s --field-selector=status.phase!=Succeeded

- name: Port-forward the istio-ingress gateway
run: ./tests/port_forward_gateway.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/training_operator_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ kubectl get pods -n $KF_PROFILE --show-labels

kubectl wait --for=condition=Ready pod -l training.kubeflow.org/replica-type=worker -n $KF_PROFILE --timeout=180s

kubectl wait --for=condition=Succeeded pytorchjob/pytorch-simple -n $KF_PROFILE --timeout=450s
kubectl wait --for=condition=Succeeded pytorchjob/pytorch-simple -n $KF_PROFILE --timeout=600s
Loading