mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-16 15:01:18 +01:00
feat: enable QEDF driver
See https://github.com/siderolabs/talos/discussions/9391 Also bump pkgs & tools, bring in Go 1.23.2, containerd v2.0.0-rc.5 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
This commit is contained in:
parent
f711907e03
commit
6a014374be
4
Makefile
4
Makefile
@ -17,10 +17,10 @@ ZSTD_COMPRESSION_LEVEL ?= 18
|
||||
CI_RELEASE_TAG := $(shell git log --oneline --format=%B -n 1 HEAD^2 -- 2>/dev/null | head -n 1 | sed -r "/^release\(.*\)/ s/^release\((.*)\):.*$$/\\1/; t; Q")
|
||||
|
||||
ARTIFACTS := _out
|
||||
TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0-alpha.0-2-g9f2189b
|
||||
TOOLS ?= ghcr.io/siderolabs/tools:v1.9.0-alpha.0-3-g1151610
|
||||
|
||||
PKGS_PREFIX ?= ghcr.io/siderolabs
|
||||
PKGS ?= v1.9.0-alpha.0-13-ge2a561f
|
||||
PKGS ?= v1.9.0-alpha.0-16-g1adb946
|
||||
EXTRAS ?= v1.9.0-alpha.0
|
||||
|
||||
KRES_IMAGE ?= ghcr.io/siderolabs/kres:latest
|
||||
|
||||
2
go.mod
2
go.mod
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/talos
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
replace (
|
||||
// see e.g. https://github.com/grpc/grpc-go/issues/6696
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/cloud-image-uploader
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
require (
|
||||
cloud.google.com/go/storage v1.43.0
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/talos-hack-docgen
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
|
||||
// which are then encoded as a valid YAML blocks with proper indentiation
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/gotagsrewrite
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
require (
|
||||
github.com/fatih/structtag v1.2.0
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
module module-sig-verify
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
require go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
|
||||
|
||||
@ -145,10 +145,11 @@ kernel/drivers/scsi/libfc/libfc.ko
|
||||
kernel/drivers/scsi/megaraid/megaraid_sas.ko
|
||||
kernel/drivers/scsi/mpi3mr/mpi3mr.ko
|
||||
kernel/drivers/scsi/mpt3sas/mpt3sas.ko
|
||||
kernel/drivers/scsi/qedf/qedf.ko
|
||||
kernel/drivers/scsi/smartpqi/smartpqi.ko
|
||||
kernel/drivers/scsi/vmw_pvscsi.ko
|
||||
kernel/drivers/uio/uio.ko
|
||||
kernel/drivers/uio/uio_pci_generic.ko
|
||||
kernel/drivers/uio/uio.ko
|
||||
kernel/drivers/usb/serial/ch341.ko
|
||||
kernel/drivers/usb/serial/cp210x.ko
|
||||
kernel/drivers/usb/serial/ftdi_sio.ko
|
||||
|
||||
@ -35,12 +35,15 @@ kernel/drivers/net/vrf.ko
|
||||
kernel/drivers/nvme/host/nvme-rdma.ko
|
||||
kernel/drivers/nvme/target/nvme-loop.ko
|
||||
kernel/drivers/nvme/target/nvmet-fc.ko
|
||||
kernel/drivers/nvme/target/nvmet.ko
|
||||
kernel/drivers/nvme/target/nvmet-rdma.ko
|
||||
kernel/drivers/nvme/target/nvmet-tcp.ko
|
||||
kernel/drivers/nvme/target/nvmet.ko
|
||||
kernel/drivers/scsi/fcoe/libfcoe.ko
|
||||
kernel/drivers/scsi/libfc/libfc.ko
|
||||
kernel/drivers/scsi/mpi3mr/mpi3mr.ko
|
||||
kernel/drivers/uio/uio.ko
|
||||
kernel/drivers/scsi/qedf/qedf.ko
|
||||
kernel/drivers/uio/uio_pci_generic.ko
|
||||
kernel/drivers/uio/uio.ko
|
||||
kernel/drivers/vfio/pci/vfio-pci-core.ko
|
||||
kernel/drivers/vfio/pci/vfio-pci.ko
|
||||
kernel/drivers/vfio/vfio_iommu_type1.ko
|
||||
|
||||
@ -29,8 +29,9 @@ All other release assets can be downloaded from [Image Factory](https://www.talo
|
||||
title = "Component Updates"
|
||||
description = """\
|
||||
Linux: 6.6.52
|
||||
containerd: 2.0.0-rc.5
|
||||
|
||||
Talos is built with Go 1.23.1.
|
||||
Talos is built with Go 1.23.2.
|
||||
"""
|
||||
|
||||
[notes.cgroups]
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/structprotogen
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
require (
|
||||
github.com/fatih/structtag v1.2.0
|
||||
|
||||
@ -495,7 +495,7 @@ const (
|
||||
TrustdUserID = 51
|
||||
|
||||
// DefaultContainerdVersion is the default container runtime version.
|
||||
DefaultContainerdVersion = "2.0.0-rc.4"
|
||||
DefaultContainerdVersion = "2.0.0-rc.5"
|
||||
|
||||
// SystemContainerdNamespace is the Containerd namespace for Talos services.
|
||||
SystemContainerdNamespace = "system"
|
||||
@ -971,7 +971,7 @@ const (
|
||||
DBusClientSocketPath = "/run/dbus/system_bus_socket"
|
||||
|
||||
// GoVersion is the version of Go compiler this release was built with.
|
||||
GoVersion = "go1.23.1"
|
||||
GoVersion = "go1.23.2"
|
||||
|
||||
// KubernetesTalosAPIServiceName is the name of the Kubernetes service to access Talos API.
|
||||
KubernetesTalosAPIServiceName = "talos"
|
||||
|
||||
@ -1 +1 @@
|
||||
v1.9.0-alpha.0-13-ge2a561f
|
||||
v1.9.0-alpha.0-16-g1adb946
|
||||
@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/talos/pkg/machinery
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.2
|
||||
|
||||
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
|
||||
// which are then encoded as a valid YAML blocks with proper indentiation
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user