-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Expose tritonserver args in values.yaml #5582
Expose tritonserver args in values.yaml #5582
Conversation
…of editing the deployment.yaml.
Seems reasonable to me. CC @nealvaidya for comments |
Looks good to me |
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.
Hi @okyspace, LGTM overall, just a few things:
- Rename additionalArgs to serverArgs to be more clear.
- Can you also share an example command
... --set serverArgs=...
and the output showing that server deployed successfully as a sanity check? - Have you signed a CLA already? If not, please follow the instructions here and let us know when you've sent it.
@rmccorm4 , Thanks for your reply.
Thanks. |
@rmccorm4, as requested, I have added the examples for sanity check. Any comments? The examples show how you can set the customised serverArgs and verify that they are taking effect.
You should see the generated deployment.yaml. The serverArgs are populated as array args in this example.
Run Once the container is successfully running, run for e.g. model-repository, model-control-mode for e.g. repository-poll-secs. You can see from the logs that "Polling model repository" happens every 8 secs. |
I have also emailed my signed CLA. |
Hi, is there anything that I need to follow up to close this PR? |
@rmccorm4 , is there something i missed out for this PR? |
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 LGTM, thanks for your patience @okyspace 🙇 Letting the linters/pre-commit run to double check.
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.
Added suggested fixes for linter errors
Co-authored-by: Ryan McCormick <[email protected]>
Co-authored-by: Ryan McCormick <[email protected]>
@rmccorm4 Thanks for the reviews and suggestions. |
Hi @okyspace, can you either resend this email or clarify the name and company attached to it? |
@rmccorm4 |
Thanks for your contribution and patience @okyspace ! |
Current k8s_onprem chart has predefined args in deployment.yaml. We could change it from the yaml file though but would be cleaner to customise the args through values.yaml instead.