feat: update talos base packages

This PR will update the base packages to the latest versions. Updated
packages are:

- ca-certificates
- cni
- iptables
- kernel
- kmod
- libseccomp
- musl
- runc
- socat
- util-linux
- xfsprogs

Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
This commit is contained in:
Spencer Smith 2020-03-17 10:56:19 -04:00 committed by Spencer Smith
parent 7e136fee67
commit 1cbbf9cd5a
2 changed files with 20 additions and 20 deletions

View File

@ -244,29 +244,29 @@ COPY --from=osctl-darwin-build /osctl-darwin-amd64 /osctl-darwin-amd64
# The kernel target is the linux kernel. # The kernel target is the linux kernel.
FROM scratch AS kernel FROM scratch AS kernel
COPY --from=docker.io/autonomy/kernel:08da02e /boot/vmlinuz /vmlinuz COPY --from=docker.io/autonomy/kernel:619022a /boot/vmlinuz /vmlinuz
COPY --from=docker.io/autonomy/kernel:08da02e /boot/vmlinux /vmlinux COPY --from=docker.io/autonomy/kernel:619022a /boot/vmlinux /vmlinux
# The rootfs target provides the Talos rootfs. # The rootfs target provides the Talos rootfs.
FROM build AS rootfs-base FROM build AS rootfs-base
COPY --from=docker.io/autonomy/fhs:08da02e / /rootfs COPY --from=docker.io/autonomy/fhs:619022a / /rootfs
COPY --from=docker.io/autonomy/ca-certificates:08da02e / /rootfs COPY --from=docker.io/autonomy/ca-certificates:619022a / /rootfs
COPY --from=docker.io/autonomy/containerd:08da02e / /rootfs COPY --from=docker.io/autonomy/containerd:619022a / /rootfs
COPY --from=docker.io/autonomy/dosfstools:08da02e / /rootfs COPY --from=docker.io/autonomy/dosfstools:619022a / /rootfs
COPY --from=docker.io/autonomy/eudev:08da02e / /rootfs COPY --from=docker.io/autonomy/eudev:619022a / /rootfs
COPY --from=docker.io/autonomy/iptables:08da02e / /rootfs COPY --from=docker.io/autonomy/iptables:619022a / /rootfs
COPY --from=docker.io/autonomy/libressl:08da02e / /rootfs COPY --from=docker.io/autonomy/libressl:619022a / /rootfs
COPY --from=docker.io/autonomy/libseccomp:08da02e / /rootfs COPY --from=docker.io/autonomy/libseccomp:619022a / /rootfs
COPY --from=docker.io/autonomy/musl:08da02e / /rootfs COPY --from=docker.io/autonomy/musl:619022a / /rootfs
COPY --from=docker.io/autonomy/runc:08da02e / /rootfs COPY --from=docker.io/autonomy/runc:619022a / /rootfs
COPY --from=docker.io/autonomy/socat:08da02e / /rootfs COPY --from=docker.io/autonomy/socat:619022a / /rootfs
COPY --from=docker.io/autonomy/syslinux:08da02e / /rootfs COPY --from=docker.io/autonomy/syslinux:619022a / /rootfs
COPY --from=docker.io/autonomy/xfsprogs:08da02e / /rootfs COPY --from=docker.io/autonomy/xfsprogs:619022a / /rootfs
COPY --from=docker.io/autonomy/util-linux:08da02e /lib/libblkid.* /rootfs/lib COPY --from=docker.io/autonomy/util-linux:619022a /lib/libblkid.* /rootfs/lib
COPY --from=docker.io/autonomy/util-linux:08da02e /lib/libuuid.* /rootfs/lib COPY --from=docker.io/autonomy/util-linux:619022a /lib/libuuid.* /rootfs/lib
COPY --from=docker.io/autonomy/kmod:08da02e /usr/lib/libkmod.* /rootfs/lib COPY --from=docker.io/autonomy/kmod:619022a /usr/lib/libkmod.* /rootfs/lib
COPY --from=docker.io/autonomy/kernel:08da02e /lib/modules /rootfs/lib/modules COPY --from=docker.io/autonomy/kernel:619022a /lib/modules /rootfs/lib/modules
COPY --from=machined /machined /rootfs/sbin/init COPY --from=machined /machined /rootfs/sbin/init
COPY --from=apid-image /apid.tar /rootfs/usr/images/ COPY --from=apid-image /apid.tar /rootfs/usr/images/
COPY --from=ntpd-image /ntpd.tar /rootfs/usr/images/ COPY --from=ntpd-image /ntpd.tar /rootfs/usr/images/

View File

@ -13,7 +13,7 @@ import (
const ( const (
// DefaultKernelVersion is the default Linux kernel version // DefaultKernelVersion is the default Linux kernel version
DefaultKernelVersion = "5.4.11-talos" DefaultKernelVersion = "5.5.9-talos"
// KernelParamConfig is the kernel parameter name for specifying the URL // KernelParamConfig is the kernel parameter name for specifying the URL
// to the config. // to the config.