How to create a dedicated deployment (Roboflow CLI)

Create Your Dedicated Deployment using Roboflow CLI

The roboflow deployment command provides a set of subcommands to manage your Roboflow Dedicated Deployments. Before you proceed, please ensure you have the roboflow CLI installed and configured with your API key, as documented here.

Subcommands

  • machine_type: List available machine types for your Dedicated Deployments. Currently, we support dev-cpu, dev-gpu, prod-cpu, prod-gpu.

  • add: Create a new Dedicated Deployment.

  • get: Get detailed information about a specific Dedicated Deployment.

  • list: List all Dedicated Deployments in your workspace.

  • usage_workspace: Get usage statistics for all Dedicated Deployments in your workspace.

  • usage_deployment: Get usage statistics for a specific Dedicated Deployment.

  • delete: Delete a Dedicated Deployment.

  • log: View logs for a specific Dedicated Deployment.

Subcommand Examples

  • Create a new deployment

    roboflow deployment add my-deployment -m prod-gpu -e [email protected]
  • Get deployment information

    roboflow deployment get my-deployment
  • List all deployments

    roboflow deployment list

    Use code with caution.

  • Get workspace usage

    roboflow deployment usage_workspace
  • Get deployment usage

    roboflow deployment usage_deployment my-deployment
  • Delete a deployment

    roboflow deployment delete my-deployment
  • View deployment logs

    roboflow deployment log my-deployment -t 60 -n 20

Additional Notes

  • For more detailed information and options for each subcommand, use the --help flag.

Last updated

Was this helpful?