Aliases
vercel rr
Syntax
vercel rolling-release [subcommand] [options]Subcommands
Available subcommands for this command
configureSet up rolling release configuration
vercel rolling-release configure --cfg='[json-config]'startBegin rolling release
vercel rolling-release start --dpl=dpl_abcapproveAdvance to next stage
vercel rolling-release approve --dpl=dpl_abc --currentStageIndex=0abortStop rolling release
vercel rolling-release abort --dpl=dpl_abccompleteFinish and promote to 100%
vercel rolling-release complete --dpl=dpl_abcfetchGet status information
vercel rolling-release fetchOptions
Available flags and parameters for this command
--cfgJSON configuration or 'disable'
--dplDeployment ID or URL
--currentStageIndexStage 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_xyz123vercel rr approve --dpl=dpl_xyz123 --currentStageIndex=1Use Cases
When to use this command
- •Gradual feature rollouts
- •Risk mitigation
- •A/B testing
- •Canary deployments