From 36084d55ba1fc90e7cfbeeedc93ea5eed2eb62f0 Mon Sep 17 00:00:00 2001 From: Brad Davidson Date: Thu, 11 May 2023 19:37:59 +0000 Subject: [PATCH] Bump binary size limit to 70MB Cherry-picked from ba62c79f9b50 Signed-off-by: Brad Davidson --- scripts/binary_size_check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/binary_size_check.sh b/scripts/binary_size_check.sh index a70bf3172a..741a9f9548 100755 --- a/scripts/binary_size_check.sh +++ b/scripts/binary_size_check.sh @@ -8,9 +8,9 @@ fi . ./scripts/version.sh -# Try to keep the K3s binary under 64 megabytes. +# Try to keep the K3s binary under 70 megabytes. # "64M ought to be enough for anybody" -MAX_BINARY_MB=64 +MAX_BINARY_MB=70 MAX_BINARY_SIZE=$((MAX_BINARY_MB * 1024 * 1024)) BIN_SUFFIX="-${ARCH}" if [ ${ARCH} = amd64 ]; then