Skip to content

Commit

Permalink
minVCpu -> minCpu (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
vankovap authored Feb 21, 2025
1 parent 1a03ffc commit 96a800c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions apps/docs/content/references/import.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 96a800c

Please sign in to comment.