mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-04-04 11:03:52 +00:00
runtime: improved memory overhead management
After these changes:
1. The value of the K8s runtime class memory overhead:
- Covers the memory usage from all the Host-side components (mainly
the Kata Shim and the VMM).
- Doesn't include the memory usage from any Guest-side components.
2. The value of a pod memory limit specified by the user:
- Is equal to the memory size of the Pod VM.
- Includes the memory usage from all the Guest-side components
(mainly user's workload, the Guest kernel, and the Kata Agent)
- Doesn't include the memory usage from any Host-side components.
Signed-off-by: Dan Mihai <dmihai@microsoft.com>
This commit is contained in:
@@ -1943,11 +1943,6 @@ func checkHypervisorConfig(config vc.HypervisorConfig) error {
|
||||
}
|
||||
|
||||
memSizeMB := int64(config.MemorySize)
|
||||
|
||||
if memSizeMB == 0 {
|
||||
return errors.New("VM memory cannot be zero")
|
||||
}
|
||||
|
||||
mb := int64(1024 * 1024)
|
||||
|
||||
for _, image := range images {
|
||||
|
||||
@@ -79,7 +79,7 @@ const (
|
||||
vSockLogsPort = 1025
|
||||
|
||||
// MinHypervisorMemory is the minimum memory required for a VM.
|
||||
MinHypervisorMemory = 64
|
||||
MinHypervisorMemory = 0
|
||||
|
||||
defaultMsize9p = 8192
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ source "${common_file}"
|
||||
|
||||
# these options ensure we produce the proper CLH config file
|
||||
runtime_make_flags="SKIP_GO_VERSION_CHECK=1 QEMUCMD= FCCMD= ACRNCMD= STRATOVIRTCMD= DEFAULT_HYPERVISOR=cloud-hypervisor
|
||||
DEFMEMSZ=256 DEFSTATICSANDBOXWORKLOADMEM=1792 DEFVIRTIOFSDAEMON=${VIRTIOFSD_BINARY_LOCATION} PREFIX=${INSTALL_PATH_PREFIX}"
|
||||
DEFMEMSZ=0 DEFSTATICSANDBOXWORKLOADMEM=512 DEFVIRTIOFSDAEMON=${VIRTIOFSD_BINARY_LOCATION} PREFIX=${INSTALL_PATH_PREFIX}"
|
||||
|
||||
# - for vanilla Kata we use the kernel binary. For ConfPods we use IGVM, so no need to provide kernel path.
|
||||
# - for vanilla Kata we explicitly set DEFSTATICRESOURCEMGMT_CLH. For ConfPods,
|
||||
|
||||
Reference in New Issue
Block a user