-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,8 +60,8 @@ services: | |
priority: 1 | ||
# Vertical autoscaling configuration object | ||
verticalAutoscaling: | ||
minVCpu: 1 | ||
maxVCpu: 5 | ||
minCpu: 1 | ||
maxCpu: 5 | ||
# Choose SHARED or DEDICATED | ||
cpuMode: DEDICATED | ||
minRam: 1 | ||
|
@@ -367,12 +367,12 @@ The vertical autoscaling configuration is used to define the vertical autoscalin | |
</thead> | ||
<tbody> | ||
<tr> | ||
<td className="w-fit">minVCpu</td> | ||
<td className="w-fit">minCpu</td> | ||
<td className="w-fit">integer</td> | ||
<td className="w-fit">Minimum number of virtual CPUs</td> | ||
</tr> | ||
<tr> | ||
<td className="w-fit">maxVCpu</td> | ||
<td className="w-fit">maxCpu</td> | ||
<td className="w-fit">integer</td> | ||
<td className="w-fit">Maximum number of virtual CPUs</td> | ||
</tr> | ||
|
@@ -456,8 +456,8 @@ services: | |
buildFromGit: https://github.com/example/app | ||
enableSubdomainAccess: true | ||
verticalAutoscaling: | ||
minVCpu: 1 | ||
maxVCpu: 5 | ||
minCpu: 1 | ||
maxCpu: 5 | ||
# Choose SHARED or DEDICATED | ||
cpuMode: DEDICATED | ||
minRam: 1 | ||
|
@@ -477,7 +477,7 @@ This yaml will create a service with the hostname `app` with `[email protected]` run | |
- RAM: `1-32 GB` | ||
- Disk Space: `1-100 GB` | ||
|
||
The `VerticalAutoscaling` map allows you to define the vertical autoscaling settings for the service with parameters like `minVCpu`, `maxVCpu`, `cpuMode`, `minRam`, `maxRam`, `minDisk`, `maxDisk`, `startCpuCoreCount`, `minFreeCpuCores`, `minFreeCpuPercent`, `minFreeRamGB`, `minFreeRamPercent`. | ||
The `VerticalAutoscaling` map allows you to define the vertical autoscaling settings for the service with parameters like `minCpu`, `maxCpu`, `cpuMode`, `minRam`, `maxRam`, `minDisk`, `maxDisk`, `startCpuCoreCount`, `minFreeCpuCores`, `minFreeCpuPercent`, `minFreeRamGB`, `minFreeRamPercent`. | ||
|
||
### Horizontal Autoscaling Configuration | ||
|
||
|