From 11fad69b4763cb7a475c2c1c70e4ed73641b92e1 Mon Sep 17 00:00:00 2001 From: Brad Fritz Date: Mon, 6 Dec 2021 14:33:50 -0500 Subject: [PATCH] update all images to Alpine 3.15 The [alpine-chroot-install] upgrade is needed for [this commit] where the Alpine 3.15 signing keys are added to the known key list. Gotcha to be aware of: The go ssh library may have trouble connecting to the new version of openssh-server in Alpine 3.15 unless this line is added to the `sshd_config`: PubkeyAcceptedAlgorithms +ssh-rsa See https://github.com/golang/go/issues/49952 . Noticed with [k0sctl] and the [make build_cluster] target. [alpine-chroot-install]: https://github.com/alpinelinux/alpine-chroot-install [k0sctl]: https://github.com/k0sproject/k0sctl [make build_cluster]: https://github.com/bfritz/homelab-bootstrap/blob/v0.0.3/k0s/Makefile#L52-L53 [this commit]: https://github.com/alpinelinux/alpine-chroot-install/commit/d4ab61fb6e080e3064846e577b18ecab0f0c15ad --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 23e9154..b5d8eda 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ export ACI_REPO := https://github.com/alpinelinux/alpine-chroot-install.git -export ACI_TAG := v0.13.0 -export ALPINE_VERSION := 3.14 +export ACI_TAG := v0.13.2 +export ALPINE_VERSION := 3.15 export APORTS_REPO := https://github.com/alpinelinux/aports.git export BUILD_USER := imagebuilder export WORK_DIR := bootstrap