Command Palette

Search for a command to run...

vercel_rolling_release

Manage staged rollouts with gradual traffic distribution

Aliases
vercel rr
Syntax
vercel rolling-release [subcommand] [options]
Subcommands
Available subcommands for this command
configure

Set up rolling release configuration

vercel rolling-release configure --cfg='[json-config]'
start

Begin rolling release

vercel rolling-release start --dpl=dpl_abc
approve

Advance to next stage

vercel rolling-release approve --dpl=dpl_abc --currentStageIndex=0
abort

Stop rolling release

vercel rolling-release abort --dpl=dpl_abc
complete

Finish and promote to 100%

vercel rolling-release complete --dpl=dpl_abc
fetch

Get status information

vercel rolling-release fetch
Options
Available flags and parameters for this command
--cfg

JSON configuration or 'disable'

--dpl

Deployment ID or URL

--currentStageIndex

Stage index for approval

Examples
Common usage examples
vercel rr configure --cfg='{"enabled":true, "advancementType":"automatic", "stages":[{"targetPercentage":25,"duration":10}]}'
vercel rr start --dpl=dpl_xyz123
vercel rr approve --dpl=dpl_xyz123 --currentStageIndex=1
Use Cases
When to use this command
  • Gradual feature rollouts
  • Risk mitigation
  • A/B testing
  • Canary deployments