You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy-apps/rolling-deploy.html.md.erb
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,9 @@ Review the limitations of this feature before running the command. For more info
38
38
* **For cf CLI v7+, run:**
39
39
40
40
```
41
-
cf push APP-NAME --strategy rolling --max-in-flight MAX_IN_FLIGHT
41
+
cf push APP-NAME --strategy rolling
42
42
```
43
43
Where `APP-NAME` is the name that you want to give your app.
44
-
Where `MAX_IN_FLIGHT` specifies the maximum number of new instances to start up simultaneous until the deployment is complete. Optional and defaults to 1.
@@ -54,6 +53,15 @@ Review the limitations of this feature before running the command. For more info
54
53
If the deployment stops and doesn't restart, cancel it and run it again as described in an earlier step.
55
54
To cancel, see [Cancel a deployment](#cancel).
56
55
56
+
57
+
* **For cf CLI v8.8.0+ and CAPI V3.173.0 or later**
58
+
Allows you to additionally specify the `--max-in-flight` property, run:
59
+
```
60
+
cf push APP-NAME --strategy rolling --max-in-flight MAX_IN_FLIGHT
61
+
```
62
+
Where `APP-NAME` is the name that you want to give your app.
63
+
Where `MAX_IN_FLIGHT` specifies the maximum number of new instances to start up simultaneous until the deployment is complete. Optional and defaults to 1.
0 commit comments