-
Notifications
You must be signed in to change notification settings - Fork 937
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
Add comprehensive Kubeflow integration test GitHub Actions workflow #3070
Add comprehensive Kubeflow integration test GitHub Actions workflow #3070
Conversation
8b6e404
to
7f7b375
Compare
@juliusvonkohout I have drafted a PR but not sure how to test the github action file locally. |
Please reuse the files under /tests and do not duplicate them inline. Try to stay close to the individual test, if possible copy from the individual tests. |
/ok-to-test |
run: | | ||
pip install pytest kubernetes kfp==2.11.0 kserve pytest-timeout pyyaml requests | ||
|
||
- name: Install kubectl and kustomize |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please reference the existing scripts and files under / tests everywhere, do not just copy it over.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The goal is not to copy the readme, but to reuse and recombine our existing tests. Only what is missing can come from the readme. So the readme comes last, after you have combined the workflows here https://github.com/kubeflow/manifests/tree/master/.github/workflows using the scripts and objects from here https://github.com/kubeflow/manifests/tree/master/tests
604b801
to
89d0412
Compare
/ok-to-test this way each commit tests it. |
- name: Deploy Full Kubeflow Stack | ||
run: | | ||
# Apply with retry logic using exact command from README | ||
echo "Installing full Kubeflow stack from example/kustomization.yaml" | ||
while ! kustomize build example | kubectl apply --server-side --force-conflicts -f -; do | ||
echo "Retrying to apply resources"; | ||
sleep 20; | ||
done | ||
|
||
# Check deployment status | ||
kubectl get deployments --all-namespaces | ||
kubectl get pods --all-namespaces |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use the scripts from /tests and the other workflows to replicate that ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For example https://github.com/kubeflow/manifests/blob/master/.github/workflows/pipeline_test.yaml and https://github.com/kubeflow/manifests/blob/master/.github/workflows/pipeline_run_from_notebook.yaml can be copied to cover the pipeline part.
https://github.com/kubeflow/manifests/blob/master/.github/workflows/spark_test.yaml for spark and so on.
Ohk my bad. Should I close this PR and create a new one ? |
713059f
to
c3fedb5
Compare
https://github.com/kubeflow/manifests/actions/runs/14129788932/job/39587035095?pr=3070is probably failing at Run # Use the Dex login test script directly from tests directory because something is missing from https://github.com/kubeflow/manifests/blob/master/.github/workflows/dex_oauth2-proxy_test.yaml |
Do you have https://github.com/kubeflow/manifests#pre-commit-hooks enabled ? |
No i will do it |
We also need to make sure that the naming is consistent with all the individual Workflows. |
Signed-off-by: kunal-511 <[email protected]>
I have fixed all the lint issues and added pre commit |
Signed-off-by: kunal-511 <[email protected]>
Signed-off-by: kunal-511 <[email protected]>
Signed-off-by: kunal-511 <[email protected]>
a9b3e2b
to
e84e71f
Compare
Sorry, but your push again destroyed the commits. Please delete your local branch and clone again. |
Signed-off-by: Julius von Kohout <[email protected]> Signed-off-by: kunal-511 <[email protected]>
Signed-off-by: Julius von Kohout <[email protected]> Signed-off-by: kunal-511 <[email protected]>
Signed-off-by: juliusvonkohout <[email protected]>
e84e71f
to
e2ca3e3
Compare
Signed-off-by: Julius von Kohout <[email protected]>
Thank you very much for the PR. To make your life easier, I will merge it now and you can start with a fresh master branch in a follow-up PR. /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: juliusvonkohout The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Can you please tell what all things are still pending ? |
You can start with a fresh master branch and comment back in
in a PR. https://github.com/kubeflow/manifests/actions/runs/14131804046/job/39593790222?pr=3070 shows that we already got to the Katib test. So you just fix the remaining tests. I think the kserve and katib installation is missing. To add it you can again borrow from the individual workflows. |
Pull Request Template for Kubeflow Manifests
✏️ Summary of Changes
GitHub Actions workflow implements full end-to-end integration testing for Kubeflow deployment. The workflow automates testing of critical Kubeflow components, including authentication, pipelines, notebooks, and machine learning services.
🐛 Related Issues
✅ Contributor Checklist