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: docs/v3/source/includes/resources/deployments/_create.md.erb
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,9 @@ Name | Type | Description | Default
79
79
**strategy** | _string_ | The strategy to use for the deployment | `rolling`
80
80
**options.max_in_flight** | _integer_ | The maximum number of new instances to deploy simultaneously | 1
81
81
**options.web_instances** | _integer_ | The number of web instances the deployment will scale to | The current web process's instance count
82
+
**options.memory_in_mb** | _integer_ | The amount of memory in megabytes to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process. | `null`
83
+
**options.disk_in_mb** | _integer_ | The amount of disk in megabytes to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process. | `null`
84
+
**options.log_rate_limit_in_bytes_per_second** | _integer_ | Log rate limit in bytes per second to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process. | `null`
82
85
**options.canary.steps** | _array of [canary step objects](#canary-steps-object)_ | An array of canary steps to use for the deployment
83
86
**metadata.labels** | [_label object_](#labels) | Labels applied to the deployment
84
87
**metadata.annotations** | [_annotation object_](#annotations) | Annotations applied to the deployment
Copy file name to clipboardExpand all lines: docs/v3/source/includes/resources/deployments/_object.md.erb
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ Name | Type | Description
21
21
**strategy** | _string_ | Strategy used for the deployment; supported strategies are `rolling` and `canary` (experimental)
22
22
**options.max_in_flight** | _integer_ | The maximum number of new instances to deploy simultaneously
23
23
**options.web_instances** | _integer_ | The number of web instances the deployment will scale to
24
+
**options.memory_in_mb** | _integer_ | The amount of memory in megabytes to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process.
25
+
**options.disk_in_mb** | _integer_ | The amount of disk in megabytes to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process.
26
+
**options.log_rate_limit_in_bytes_per_second** | _integer_ | Log rate limit in bytes per second to allocate per web process instance. If `null`, the amount allocated will be taken from the previous web process.
24
27
**options.canary.steps** | _array of [canary step objects](#canary-steps-object)_ | Canary steps to use for the deployment. Only available for deployments with strategy 'canary'. (experimental)
25
28
**droplet.guid** | _string_ | The droplet guid that the deployment is transitioning the app to
26
29
**previous_droplet.guid** | _string_ | The app's [current droplet guid](#get-current-droplet-association-for-an-app) before the deployment was created
0 commit comments