Skip to content
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ endif
# Before 10.2.0 it was 300MB. We must maintain compatibility with older versions so rootfs size cannot exceed 300MB.
# 'k' and nvidia are not affected by this limitation because there no installation of kubevirt/k3s prior to 10.2.0
# Even though the partition layout is now unified, let's still check for ROOTFS_MAXSIZE_MB not exceeding 10GB for 'k'
# and NVIDIA based platforms, and 291MB for x86_64 and other arm64 platforms. That helps in catching image size
# and NVIDIA based platforms, and 290MB for x86_64 and other arm64 platforms. That helps in catching image size
# increases earlier than at later stage.
# We are currently filtering out a few packages from bulk builds since they are not getting published in Docker HUB
ifeq ($(HV),k)
Expand All @@ -474,7 +474,7 @@ else
PKGS_$(ZARCH)=$(shell find pkg -maxdepth 1 -type d | grep -Ev "eve|alpine|sources|kube|external-boot-image$$")
# nvidia platform requires more space
ifeq (, $(findstring nvidia,$(PLATFORM)))
ROOTFS_MAXSIZE_MB=291
ROOTFS_MAXSIZE_MB=290
else
ROOTFS_MAXSIZE_MB=10240
endif
Expand Down
Loading