fix(partitioning): lower swap minimum from 4GB to 2GB for small VMs

This commit is contained in:
2026-02-21 01:19:23 +01:00
parent eb63a4fa83
commit 53e4499d2b
2 changed files with 3 additions and 3 deletions

View File

@@ -152,6 +152,6 @@ partitioning_swap_size_gb: >-
((partitioning_memory_mb / 1024) >= 16.0)
| ternary(
(partitioning_memory_mb / 2048) | int,
[partitioning_memory_mb / 1024, 4.0] | max | int
[partitioning_memory_mb / 1024, 2.0] | max | int
)
}}