-
Notifications
You must be signed in to change notification settings - Fork 137
feat: TargetPortNumber int32 to become TargetPorts []Port #1354
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
base: main
Are you sure you want to change the base?
feat: TargetPortNumber int32 to become TargetPorts []Port #1354
Conversation
✅ Deploy Preview for gateway-api-inference-extension ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Hi @capri-xiyue. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/ok-to-test |
/assign @ahg-g |
/assign @danehans @nirrozenbaum for InferencePool spec change. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: capri-xiyue The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
Thanks @capri-xiyue! This LGTM, curious what others like @danehans and @nirrozenbaum think.
@@ -282,7 +283,8 @@ func TestXInferencePoolReconciler(t *testing.T) { | |||
if err := fakeClient.Get(ctx, req.NamespacedName, newPool1); err != nil { | |||
t.Errorf("Unexpected pool get error: %v", err) | |||
} | |||
newPool1.Spec.TargetPortNumber = 9090 | |||
// TODO: change it later to 9090 | |||
newPool1.Spec.TargetPortNumber = 0 |
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.
Same, will change it back once #1330 gets merged.
Co-authored-by: Rob Scott <[email protected]>
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.
Thanks @capri-xiyue!
@@ -208,7 +208,8 @@ kind: InferencePool | |||
metadata: | |||
name: vllm-llama3-8b-instruct-new | |||
spec: | |||
targetPortNumber: 8000 | |||
targetPorts: | |||
- portNumber: 8000 |
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.
- portNumber: 8000 | |
- number: 8000 |
part of #1336