Skip to content

minVCpu -> minCpu #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 `php-nginx@8.4` 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