[Bug] KubeRay operator failed to watch endpoint #2080
Merged
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?
The
Get
operation in controller-runtime also requireswatch
permission. See kubernetes-sigs/controller-runtime#1156 for more details. This PR (1) adds thewatch
permission for the endpoints, and (2) improves the observability of the requests sent bycurl
commands so that users can log in to thecurl
Pod and check the response.I observed that many requests fail due to timeout, so I think there may be resource contention if we launch 20 curl processes simultaneously. Hence, this PR also adds
time.sleep(1)
between each curl request.watch
cause the RayService sample YAML tests to fail frequently if we don't addtime.sleep(1)
?Related issue number
Closes #2073
Checks