github.com/sleungcy-sap/cli@v7.1.0+incompatible/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  )