Update k8s version to 1.33

* Update to 1.33

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Fix prints that broke unit tests

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Change binary max size to 75

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Change containerd version to fix misspelling

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Address binary size comment

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Update Dependencies

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

* Remove dependencie not used anymore

Signed-off-by: Vitor Savian <vitor.savian@suse.com>

---------

Signed-off-by: Vitor Savian <vitor.savian@suse.com>
This commit is contained in:
Vitor Savian
2025-04-30 04:43:37 -03:00
committed by GitHub
parent eba91ff60e
commit dc03cb4b3f
12 changed files with 237 additions and 226 deletions

View File

@@ -11,9 +11,9 @@ if [ "${DEBUG}" = 1 ]; then
set -x
fi
# Try to keep the K3s binary under 70 megabytes.
# Try to keep the K3s binary under 75 megabytes.
# "64M ought to be enough for anybody"
MAX_BINARY_MB=70
MAX_BINARY_MB=75
MAX_BINARY_SIZE=$((MAX_BINARY_MB * 1024 * 1024))
BIN_SUFFIX="-${ARCH}"
if [ ${ARCH} = amd64 ]; then