-
Notifications
You must be signed in to change notification settings - Fork 53
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
Changes InferencePool EPP Flags #152
Conversation
Signed-off-by: Daneyon Hansen <[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.
Just a few nits. Thanks!
@@ -51,7 +51,7 @@ spec: | |||
# TODO(https://github.com/kubernetes-sigs/llm-instance-gateway/issues/34) Update the image and args. | |||
image: us-central1-docker.pkg.dev/k8s-staging-images/llm-instance-gateway/epp:main | |||
args: | |||
- -serverPoolName | |||
- -poolName |
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.
- -poolName | |
- -inferencePoolName |
Datastore *K8sDatastore | ||
Scheme *runtime.Scheme | ||
Record record.EventRecorder | ||
PoolName string |
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.
PoolName string | |
InferencePoolName string |
serverPoolName = flag.String( | ||
"serverPoolName", | ||
poolName = flag.String( | ||
"poolName", |
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.
"poolName", | |
"inferencePoolName", |
"Name of the serverPool this Endpoint Picker is associated with.") | ||
"Name of the InferencePool this Endpoint Picker is associated with.") | ||
poolNamespace = flag.String( | ||
"poolNamespace", |
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.
"poolNamespace", | |
"inferencePoolNamespace", |
@liu-cong thanks for the review. I decided on |
I agree with you on |
/lgtm /approve |
/lgtm Thanks! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ahg-g, danehans, liu-cong 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 |
Signed-off-by: Daneyon Hansen <[email protected]>
Changes the EPP CLI flags and internal API fields related to the InferencePool ns/name that the EPP belongs to.
Fixes #150