-
Notifications
You must be signed in to change notification settings - Fork 501
[Docs] Improve the docs and examples #1738
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 from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,7 +81,7 @@ Depending on where you deployed the AIBrix, you can use either of the following | |
| .. code-block:: bash | ||
| # list models | ||
| curl -v http://${ENDPOINT}/v1/models | ||
| curl -v http://${ENDPOINT}/v1/models/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You've added a trailing slash to the For example:
Applying this change consistently across all example
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. /v1/models/ is a little bit different. |
||
| # completion api | ||
| curl -v http://${ENDPOINT}/v1/completions \ | ||
|
|
||
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.
Using
kubectl applyto modify a resource managed by Helm can lead to configuration drift and potential issues during chart upgrades, as Helm may not be aware of these manual changes. A more idiomatic and safer approach is to configureenvoy-gatewayusing Helm values during installation.The
envoy-gatewayHelm chart likely supports enablingEnvoyPatchPolicyvia a value. The installation command could be updated to pass this setting directly. For example:Please verify the exact value path from the
envoy-gatewayHelm chart'svalues.yamland update the documentation to use the--setflag or a values file. This will make the installation process more robust and align with Helm best practices.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 is not supported yet. envoyproxy/gateway#7458 tracked in this issue