Bump binary size limit to 70MB

Cherry-picked from ba62c79f9b

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
pull/7549/head
Brad Davidson 2023-05-11 19:37:59 +00:00 committed by Brad Davidson
parent 580e120685
commit 36084d55ba
1 changed files with 2 additions and 2 deletions

View File

@ -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