-
Notifications
You must be signed in to change notification settings - Fork 721
[k8s][examples] rdvz fix for k8s and Llama 4 example #5960
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
Conversation
pod_uuid = str(uuid.uuid4())[:6] | ||
pod_name = f'{cluster_name_on_cloud}-{pod_uuid}' | ||
pod_spec_copy['metadata']['name'] = f'{pod_name}-worker' | ||
pod_name = f'{cluster_name_on_cloud}-worker{i}' |
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.
This may raise some back compat concerns, need to verify
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.
Manually tested backcompat with sky exec
, sky launch
and sky status -r
. Since we filter based on labels and not pod names, backward compatibility is unaffected.
/smoke-test --kubernetes |
/quicktest-core --kubernetes |
/smoke-test --kubernetes |
Smoke tests failures unrelated to PR:
Rest of the tests seem to pass. This should be good to go. |
c56695a
to
5bbc89f
Compare
/smoke-test --kubernetes -k test_cancel_launch_and_exec_async |
/smoke-test --kubernetes -k test_skyserve_fast_update |
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.
LGTM
Closes #4140 and adds an example for training llama 4 maverick (400B MoE). The example needed a fix for rdvz on k8s, inspired by #3800.