How to Update Vultr Serverless Inference
-
by Blog Admin
- 19
How to Update Vultr Serverless Inference
Modify your servers configuration or settings to apply changes or improvements.
Updating a Serverless Inference subscription changes its label without affecting the underlying deployment. This helps streamline resource organization and improves clarity when managing multiple inference subscriptions.
Follow this guide to update a Serverless Inference subscription using the Vultr API or CLI.
Vultr API
- Send a
GETrequest to the List Serverless Inference endpoint and note the target inference subscription’s ID.console$ curl "https://api.vultr.com/v2/inference" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
- Send a
PATCHrequest to the Update Serverless Inference endpoint to update the label of the target inference subscription.console$ curl "https://api.vultr.com/v2/inference/{inference-id}" \ -X PATCH \ -H "Authorization: Bearer ${VULTR_API_KEY}" \ -H "Content-Type: application/json" \ --data '{ "label" : "example-inference-updated" }'
Vultr CLI
- List all the inference subscriptions available and note the target inference subscription’s ID.
console
$ vultr-cli inference list - Update the label of the target inference subscription.
console
$ vultr-cli inference update <inference-ID> --label example-inference-updated
How to Update Vultr Serverless Inference Modify your servers configuration or settings to apply changes or improvements. Updating a Serverless Inference subscription changes its label without affecting the underlying deployment. This helps streamline resource organization and improves clarity when managing multiple inference subscriptions. Follow this guide to update a Serverless…
How to Update Vultr Serverless Inference Modify your servers configuration or settings to apply changes or improvements. Updating a Serverless Inference subscription changes its label without affecting the underlying deployment. This helps streamline resource organization and improves clarity when managing multiple inference subscriptions. Follow this guide to update a Serverless…