[Feature] Get rid of wget dependency#4468
Open
400Ping wants to merge 6 commits intoray-project:masterfrom
Open
[Feature] Get rid of wget dependency#4468400Ping wants to merge 6 commits intoray-project:masterfrom
400Ping wants to merge 6 commits intoray-project:masterfrom
Conversation
Signed-off-by: 400Ping <jiekaichang@apache.org>
Signed-off-by: 400Ping <jiekaichang@apache.org>
win5923
reviewed
Feb 4, 2026
Signed-off-by: 400Ping <jiekaichang@apache.org>
4 tasks
Signed-off-by: 400Ping <jiekaichang@apache.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
KubeRay's health checks and the RayJob submitter's GCS wait loop used to rely on
wgetto perform HTTP requests. Slim Ray images (Ray 2.53+) do not includewget, which led to probe or job submission failures. These changes remove thewgetdependency for Ray ≥ 2.53 so KubeRay works with slim images that only provide Ray (and Python). For Ray < 2.53,wgetis still used where exec probes or the GCS wait are needed, since slim images are only released for 2.53+.Change summary
/api/healthz(nowget). For Ray < 2.53, keepwgetfor exec-based health checks to the same endpoints.wget. For Ray < 2.53, the existingwget-based wait is kept./-/healthzon the serving port (Serve proxy health). Liveness uses node health (/api/healthz) to check.Related issue number
Closes #3837
Checks