File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
internal/namespaces/container/v1beta1 Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 26
26
[local-storage-limit] Local storage limit of the container (in MB)
27
27
[scaling-option.concurrent-requests-threshold]
28
28
[scaling-option.cpu-usage-threshold]
29
+ [scaling-option.memory-usage-threshold]
29
30
[health-check.http.path] Path to use for the HTTP health check.
30
31
[health-check.failure-threshold] Number of consecutive health check failures before considering the container unhealthy.
31
32
[health-check.interval] Period between health checks.
Original file line number Diff line number Diff line change 26
26
[local-storage-limit] Local storage limit of the container (in MB)
27
27
[scaling-option.concurrent-requests-threshold]
28
28
[scaling-option.cpu-usage-threshold]
29
+ [scaling-option.memory-usage-threshold]
29
30
[health-check.http.path] Path to use for the HTTP health check.
30
31
[health-check.failure-threshold] Number of consecutive health check failures before considering the container unhealthy.
31
32
[health-check.interval] Period between health checks.
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ scw container container create [arg=value ...]
81
81
| local-storage-limit | | Local storage limit of the container (in MB) |
82
82
| scaling-option.concurrent-requests-threshold | | |
83
83
| scaling-option.cpu-usage-threshold | | |
84
+ | scaling-option.memory-usage-threshold | | |
84
85
| health-check.http.path | | Path to use for the HTTP health check. |
85
86
| health-check.failure-threshold | | Number of consecutive health check failures before considering the container unhealthy. |
86
87
| health-check.interval | | Period between health checks. |
@@ -209,6 +210,7 @@ scw container container update <container-id ...> [arg=value ...]
209
210
| local-storage-limit | | Local storage limit of the container (in MB) |
210
211
| scaling-option.concurrent-requests-threshold | | |
211
212
| scaling-option.cpu-usage-threshold | | |
213
+ | scaling-option.memory-usage-threshold | | |
212
214
| health-check.http.path | | Path to use for the HTTP health check. |
213
215
| health-check.failure-threshold | | Number of consecutive health check failures before considering the container unhealthy. |
214
216
| health-check.interval | | Period between health checks. |
Original file line number Diff line number Diff line change @@ -624,6 +624,12 @@ func containerContainerCreate() *core.Command {
624
624
Deprecated : false ,
625
625
Positional : false ,
626
626
},
627
+ {
628
+ Name : "scaling-option.memory-usage-threshold" ,
629
+ Required : false ,
630
+ Deprecated : false ,
631
+ Positional : false ,
632
+ },
627
633
{
628
634
Name : "health-check.http.path" ,
629
635
Short : `Path to use for the HTTP health check.` ,
@@ -813,6 +819,12 @@ func containerContainerUpdate() *core.Command {
813
819
Deprecated : false ,
814
820
Positional : false ,
815
821
},
822
+ {
823
+ Name : "scaling-option.memory-usage-threshold" ,
824
+ Required : false ,
825
+ Deprecated : false ,
826
+ Positional : false ,
827
+ },
816
828
{
817
829
Name : "health-check.http.path" ,
818
830
Short : `Path to use for the HTTP health check.` ,
You can’t perform that action at this time.
0 commit comments