github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/api/cloudcontroller/ccv3/constant/deployment_strategy.go (about)

     1  package constant
     2  
     3  // DeploymentStrategy is the strategy used to push an application.
     4  type DeploymentStrategy string
     5  
     6  const (
     7  	// Default means app will be stopped and started with new droplet.
     8  	DeploymentStrategyDefault DeploymentStrategy = ""
     9  
    10  	// Rolling means a new web process will be created for the app and instances will roll from the old one to the new one.
    11  	DeploymentStrategyRolling DeploymentStrategy = "rolling"
    12  )