Skip to content

fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.14.0-alpha.2 → v1.14.0-beta.1 - #349

Open
truecharts-admin wants to merge 1 commit into
mainfrom
renovate/github.com-siderolabs-talos-pkg-machinery-1.14.x
Open

fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.14.0-alpha.2 → v1.14.0-beta.1#349
truecharts-admin wants to merge 1 commit into
mainfrom
renovate/github.com-siderolabs-talos-pkg-machinery-1.14.x

Conversation

@truecharts-admin

@truecharts-admin truecharts-admin commented Jul 23, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/siderolabs/talos/pkg/machinery v1.14.0-alpha.2v1.14.0-beta.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)

v1.14.0-beta.1

Compare Source

Talos 1.14.0-beta.1 (2026-07-31)

Welcome to the v1.14.0-beta.1 release of Talos!
This is a pre-release of Talos

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

DNS over TLS (DoT) and DNS over HTTPS (DoH) Support

Talos now supports DNS over TLS (DoT) and DNS over HTTPS (DoH) for secure DNS resolution.
These features allow Talos to encrypt DNS queries and responses, enhancing privacy and security for DNS traffic.
The DNS protocol can be configured on a per-name server basis in the ResolverConfig document, allowing for flexible configuration of DNS resolution.

noexec on EPHEMERAL (/var)

Talos 1.14 clusters now default the EPHEMERAL volume (/var) to noexec in addition to the existing nosuid and nodev
mount options through generated machine configuration.

Existing machines are not affected on upgrades.

Note: Workloads that execute binaries placed under /var can break on new machines.
Longhorn v1 and vCluster are known to be affected.
For example, Longhorn v1's instance-manager executes engine binaries that the engine-image DaemonSet places under
/var/lib/longhorn/engine-binaries/, which now fails with permission denied.
Affected users can opt out via a VolumeConfig document:

apiVersion: v1alpha1
kind: VolumeConfig
name: EPHEMERAL
mount:
  secure: false

NOTE: Setting secure: false will also disable nosuid and nodev, which may have security implications. Use with caution.

Longhorn v2 (SPDK data engine) runs the data plane inside the instance manager process and is not affected.

Apply Configuration Modes

The '--mode=reboot' option has been removed from the talosctl apply-config command; by default, configuration is applied without a reboot.
Most configuration changes don't require a reboot; the documentation lists the changes that do.

Native BGP

Talos now supports running native BGP routing instances on the host via embedded GoBGP servers, configured with BGPInstanceConfig documents.
This removes the need to ship FRR as a system extension for the common fabric-facing use case.

List of changes:

  • Added repeatable, named BGPInstanceConfig documents to configure local ASN, router-id, optional Linux VRF, advertised interfaces, neighbors, and per-route preferred source (routeSource).
  • Peer hold-time and BFD behavior are configured inline on each concrete neighbor, which selects either an address or a link.
  • Numbered and unnumbered (IPv6 link-local, RFC 8950 extended next-hop) peering are supported, including IPv4 prefixes learned over an IPv6 link-local next-hop.
  • Neighbor-local ASN overrides and passive sessions are supported. ECMP (multipath) and BFD (fast failure detection) are supported for fabric peering.
  • BFD is currently supported only by the instance in the default routing domain; GoBGP's embedded BFD listener is not VRF-aware.
  • Each instance owns an isolated BGP RIB and, by default, installs learned routes into its default or VRF routing table through the existing route controllers. Set installRoutes: false to retain learned routes in the BGP RIB without installing them into the Linux routing table.
  • Instances can selectively import best neighbor-learned routes from other named instances with importRoutes prefix selectors. Imports are one-way, preserve path attributes, and do not recursively import locally originated or previously imported paths.
  • Peer state is observable via instance-qualified BGPPeerStatus resources (talosctl get bgppeerstatus).
  • RouteSpec/RouteStatus now carry a multipath next-hop list to support ECMP and cross-family (RFC 8950) next-hops.
Btrfs Support

Talos now supports mounting and provisioning btrfs filesystem for user volumes and existing volumes.

Support for btrfs is enabled by installing btrfs system extension.

CRI Base Runtime Specification Configuration

Talos now supports overriding the default OCI runtime specification for CRI containers with a
CRIBaseRuntimeSpecConfig document:

apiVersion: v1alpha1
kind: CRIBaseRuntimeSpecConfig
overrides:
  process:
    rlimits:
      - type: RLIMIT_NOFILE
        hard: 1024
        soft: 1024

The .machine.baseRuntimeSpecOverrides field is deprecated and remains supported during the deprecation
period. It is mutually exclusive with CRIBaseRuntimeSpecConfig; configurations containing both are rejected.

Applying, updating, or removing either source regenerates the base runtime specification and restarts CRI
automatically. A machine reboot is no longer required.

CRI Customization Configuration

Talos now supports customizing the CRI containerd configuration with named CRICustomizationConfig
documents. Each document contains a TOML fragment; fragments are merged in lexicographical order by name.
Applying, updating, or removing these documents updates the generated CRI configuration and restarts CRI
automatically.

The legacy /etc/cri/conf.d/20-customization.part machine-file configuration remains supported during the
deprecation period and is exposed under the reserved name customization. A CRICustomizationConfig document
cannot use that name.

NOTE: a machine reboot is no longer required to apply changes to CRI configuration.

Containerd NRI

Talos no longer disables NRI (Node Resource Interface) for the CRI containerd instance by default, so NRI is available
to use without any machine config patches.

To bring back the old behavior of NRI disabled by default, add the following machine configuration document:

apiVersion: v1alpha1
kind: CRICustomizationConfig
name: disable-nri
content: |
  [plugins]
    [plugins."io.containerd.nri.v1.nri"]
       disable = true
Default Installer Image

The default installer image has been updated to use the Image Factory.
The ghcr.io/siderolabs/installer image is no longer published with releases; use the Image Factory installer image instead.

DHCP

DHCPv4 search domains are now applied to the resolver configuration.

DHCPv4 configuration now supports ignoreRoutes option to ignore routes provided by DHCPv4 servers.

Cluster Discovery

Talos introduces support for configuring multiple discovery service endpoints.
Talos introduces new document for configuring the cluster discovery identity.

List of changes:

  • Deprecated .cluster.discovery in the v1alpha1 config; use the DiscoveryServiceConfig document for discovery service configuration. The v1alpha1 config and DiscoveryServiceConfig are mutually exclusive.
  • Deprecated .cluster.secret and cluster.id in the v1alpha1 config; use the DiscoveryIdentityConfig document for discovery identity configuration. The v1alpha1 config and DiscoveryIdentityConfig are mutually exclusive.
  • Changed cluster ID encoding in the generated secret bundle, from base64.URLEncoding to base64.StdEncoding. This aligns the encoding with the rest of Talos.
Encryption Discards

Volume encryption now supports an allowDiscards option (disabled by default) which passes TRIM/discard requests
through to the underlying device when the encrypted volume is opened.

This only enables passing discards through to the underlying device; Talos does not perform any fstrim/discard operation by itself.

etcd

Talos is now compatible with etcd v3.6.x only (the default etcd version was 3.6.x since Talos v1.11).
The default version is 3.7.0+ now.

etcd now serves its HTTP-only endpoints (/metrics, /health, the gRPC-gateway JSON API) on a dedicated
listener on port 2383, while the client port 2379 serves gRPC only. This keeps gRPC off Go's net/http
HTTP/2 server, avoiding watch-stream starvation under TLS (see etcd-io/etcd#15402, golang/go#58804,
etcd-io/etcd#21605).

Upgrade note: etcd metrics and the HTTP health endpoint are no longer reachable on 2379; scrape them on
port 2383 instead (same client mTLS as before). etcd gRPC clients and the Talos health check are unaffected.

Firewall might need to be adjusted to block the port 2383 if previously 2379 was blocked.

If --listen-metrics-urls was customized, the metrics should not move.

EtcFileConfig

Talos now supports managing user-owned files under /etc with the new EtcFileConfig multi-document
configuration kind. The document name is the path relative to /etc, and each document owns the complete
file contents and mode.

This can be used to configure files such as /etc/nfsmount.conf or /etc/multipath.conf. Talos-managed
paths, including resolv.conf, hosts, machine-id, CRI and Kubernetes configuration, trust bundles, and
identity files, are rejected to prevent overriding files owned by Talos.

Filesystem Trim

Talos can now periodically trim (the equivalent of the fstrim command) mounted filesystems which support trimming,
discarding unused blocks. This is useful for SSDs and thin-provisioned storage.

Trimming is opt-in via a new FilesystemTrimConfig document which sets the global trim interval:

apiVersion: v1alpha1
kind: FilesystemTrimConfig
interval: 168h0m0s # one week

The default machine configuration for Talos 1.14+ includes a FilesystemTrimConfig document with a default trim interval of one week,
so trimming is enabled by default for eligible filesystems. For cluster which were upgraded from older versions, the FilesystemTrimConfig document will be missing,
so trimming will be disabled by default until the document is added.

When the document is present, Talos builds a stable schedule (hashed by node ID and volume ID, so trims are spread out
across volumes and across nodes in a cluster) and trims eligible volumes (ready disk/partition volumes with a
trim-capable filesystem; for encrypted volumes only when allowDiscards is set).

The trim interval can be overridden or disabled per-volume via a trim block on the volume documents
(VolumeConfig, UserVolumeConfig, ExistingVolumeConfig, ExternalVolumeConfig):

trim:
  enabled: true
  interval: 24h0m0s
Flannel CNI

Talos now configures Flannel with the EnableNFTables option enabled, which uses nftables native backend instead of iptables-nft compatibility layer.

FlexVolume Host Path Removed

Talos no longer provisions the deprecated FlexVolume executable host path at
/usr/libexec/kubernetes. FlexVolume has been deprecated since Kubernetes 1.23.
Modern CSI plugin paths under /var/lib/kubelet are unaffected.

Host DNS Configuration

HostDNS configuration was moved from the v1alpha1 config .machine.features.hostDNS field to the new hostDNS in the ResolverConfig document.

HTTP Probe Support

Talos now supports HTTP network probes, allowing for monitoring of HTTP endpoints.
HTTP responses with status 200-399 are considered successful, while connection and transport errors are treated as failures.

Image Cache Configuration

Talos now supports a new ImageCacheConfig document for configuring the Image Cache feature, replacing the old machine.features.imageCache field in the v1alpha1 config.
Old configuration is still supported for backwards compatibility.

Kernel Multi-document Configuration

Talos introduces new multi-document configuration for kernel parameters (sysctl and sysfs settings), replacing the old v1alpha1 config fields.
The old configuration is still supported for backwards compatibility, but new deployments should use the new documents.

If both old and new configuration sources are used, the new multi-document configuration takes precedence over the old v1alpha1 config on conflicting fields.

List of changes:

  • Deprecated .machine.sysctls in the v1alpha1 config; use the SysctlConfig document for kernel sysctl configuration.
  • Deprecated .machine.sysfs in the v1alpha1 config; use the SysfsConfig document for sysfs configuration.
  • Deprecated .machine.kernel in the v1alpha1 config; use the KernelModuleConfig document for kernel module configuration.
Kernel Module Status

Talos now reports the status of both dynamically loaded, and built-in kernel modules.

The LoadedKernelModule resource has been deprecated and superseded by the new KernelModuleStatus resource.

In-tree Volume Plugins Deprecated

Because the kubelet now runs inside the sandbox namespace (see the workload isolation note), the in-tree
Kubernetes volume plugins that require the kubelet to reach host-level daemons no longer work. In particular
the in-tree iscsi volume plugin, which drives the kubelet's iscsiadm wrapper to talk to the host iscsid,
can no longer locate it across the sandbox PID namespace boundary.

Use CSI drivers instead — a CSI node plugin performs the attach/mount itself in its own privileged pod and is
unaffected by the sandbox. For iSCSI, kubernetes-csi/csi-driver-iscsi (or democratic-csi) consumes a
target the same way. All in-tree (non-CSI) volume plugins are deprecated for the kubelet and support for them
may be removed in a later release.

Kubernetes Multi-document Configuration

Talos introduces new multi-document Kubernetes configuration, which allows for more flexible and modular configuration of Kubernetes components.
Talos still supports the old v1alpha1 config for backwards compatibility, but new features and fields will only be available in the new multi-document format.
The kube-proxy is now using configuration to manage its settings instead of command line arguments (with new KubeProxyConfig document).

List of changes:

  • Deprecated .cluster.secretboxEncryptionSecret in the v1alpha1 config; use the KubeEtcdEncryptionConfig document for full etcd encryption configuration.
  • Deprecated .cluster.apiServer in the v1alpha1 config; use the KubeAPIServerConfig, KubeAdmissionControlConfig, KubeAuditPolicyConfig, KubeAuthenticationConfig and KubeAuthorizerConfig documents for kube-apiserver configuration.
  • Deprecated .cluster.ca, .cluster.acceptedCAs and .cluster.aggregatorCA in the v1alpha1 config; use the KubeAPIServerCAConfig, KubeAggregatorCAConfig documents.
  • Deprecated .cluster.controllerManager in the v1alpha1 config; use the KubeControllerManagerConfig document for kube-controller-manager configuration.
  • Deprecated .cluster.scheduler in the v1alpha1 config; use the KubeSchedulerConfig document for kube-scheduler configuration.
  • Deprecated .cluster.proxy in the v1alpha1 config; use the KubeProxyConfig document for kube-proxy configuration.
  • Deprecated .cluster.network in the v1alpha1 config; use the KubeNetworkConfig document for Kubernetes network configuration; Flannel can be configured using the KubeFlannelCNIConfig document.
  • Deprecated .cluster.coreDNS in the v1alpha1 config; use the KubeCoreDNSConfig document for CoreDNS configuration.
  • Deprecated .cluster.name and .cluster.controlPlane.endpoint in the v1alpha1 config; use the KubeClusterConfig` document for cluster name and control plane endpoint configuration.
  • Deprecated the following list of fields, all of them moved into `KubeNodeConfig:
    • .cluster.allowSchedulingOnControlPlanes
    • .machine.kubelet.skipNodeRegistration
    • .machine.kubelet.registerWithFQDN
    • .machine.kubelet.nodeIP
    • .machine.nodeLabels
    • .machine.nodeAnnotations
    • .machine.nodeTaints
  • The default NoSchedule taint for controlplane and label are now explicitly listed in KubeNodeConfig.
  • Deprecated the rest of .machine.kubelet fields in the v1alpha1 config; use the KubeNodeConfig and KubeCredentialProviderConfig documents for kubelet configuration.
  • Deprecated .machine.pods in the v1alpha1 config; use the KubeStaticPodConfig document for static pod configuration.
  • Deprecated .machine.files in the v1alpha1 config; use dedicated configuration documents such as EtcFileConfig and CRICustomizationConfig instead.
  • Deprecated .machine.baseRuntimeSpecOverrides in the v1alpha1 config; use the CRIBaseRuntimeSpecConfig document for base runtimespec overrides.
  • Deprecated .cluster.inlineManifests in the v1alpha1 config; use the KubeInlineManifestConfig document for inline manifests.
  • Deprecated .cluster.extraManifests and .cluster.extraManifestHeaders in the v1alpha1 config; use the KubeExternalManifestConfig document for external manifests.
  • Deprecated .machine.features.kubePrism; use the KubePrismConfig document for KubePrism configuration (or remove it to disable KubePrism).
  • Deprecated .machine.features.kubernetesTalosAPIAccess; use the KubeTalosAPIAccessConfig document instead.
  • Added nodeCIDRMaskSizeIPv4 (default 24) and nodeCIDRMaskSizeIPv6 (default 64) settings to the KubeNetworkConfig document to control the per-node pod CIDR mask size and validate the pod and service subnet sizes.
LVM Logical Volume Creation

Logical volumes can now be declared with a new LVMLogicalVolumeConfig multi-doc config kind. Each document
names a logical volume, its parent volumeGroup, a type (linear, raid0, raid1 or raid10) and a
maxSize (absolute, e.g. 50GiB, or a percentage of the volume group, e.g. 80%). RAID layouts accept
optional mirrors (raid1/raid10, default 1) and stripes (raid0/raid10, default: all available physical
volumes) fields. Once the volume group is assembled the logical volume is created via lvcreate.

Raising maxSize grows an existing logical volume via lvextend; percentage-sized volumes also grow when
their volume group is extended. Shrinking is never performed (it risks data loss) - a request to reduce the
size surfaces an LVMValidationError instead. Removal stays an explicit operation via the LVMService LV
remove RPC (talosctl wipe lv).

LVM Status

Talos now provides detailed LVM status information, allowing for better monitoring and management of LVM volumes.
New resources LVMPhysicalVolumeStatus, LVMVolumeGroupStatus, and LVMLogicalVolumeStatus expose PV, VG, and LV details.
DiscoveredVolume resources for logical volumes are listed by their kernel name (e.g. dm-0). To resolve the <vg>/<lv> for a given device, use the Disks or BlockSymlinks resources, which carry the udev-managed symlinks (e.g. /dev/disk/by-id/dm-name-<vg>-<lv>).

LVM Volume Group Creation

Talos can now create and grow LVM Volume Groups declaratively through a new LVMVolumeGroupConfig multi-doc
config kind. Each document names a Volume Group and a CEL volumeSelector over the disk inventory; matched
disks are initialised as Physical Volumes (pvcreate) and aggregated into the requested VG (vgcreate).
Newly matched disks added to an existing VG are attached via vgextend.

Reconciliation is strictly additive and safe-by-default.

LVM Wipe

Talos now provides the ability to securely wipe LVM metadata from logical volumes, volume groups, and physical volumes.
This feature allows for selective wiping of logical volumes, volume groups, and physical volumes.

With talosctl wipe lv/vg/pv <name>, users can wipe LVM metadata from a specific logical volume, volume group, or physical volume.

NTS for Time Synchronization

Talos now supports Network Time Security (NTS) for secure time synchronization.
This feature enhances the security of NTP by providing cryptographic authentication of time sources.

NTS is enabled by default (without any configuration sources) for the default time.cloudflare.com time server
NTS can be enabled for custom time servers via the new useNTS field in the TimeServerConfig document.

RAID Array Creation

Talos can now create and grow Linux MD (software RAID) arrays declaratively through a new RAIDArrayConfig
multi-doc config kind. Each document names an array, its level (raid1) and a CEL volumeSelector over
the disk inventory; matched disks are assembled into the requested array with mdadm and exposed at the stable
/dev/disk/by-id/md-name-<name> path. New matching disks added to an existing array are attached automatically.

Reconciliation is strictly additive and safe-by-default. Arrays are never destroyed by removing the config;
removal stays an explicit operation via talosctl wipe md <device>. The new MDArrayStatus resource reports the
assembled array, level, device path, and members.

Booting from a RAID Array

Talos can now be installed onto and boot from a Linux MD (software RAID) array. Define a RAIDArrayConfig for the
array and point the install disk selector (UnattendedInstallConfig) at the resulting /dev/disk/by-id/md-name-<name>
device.

Only raid1 arrays with metadata: "1.0" can be used for booting: the 1.0 format keeps its superblock at the end of
each member, so the partition table written to the array stays visible at the start of every disk, allowing the
firmware to boot from any member. metadata defaults to 1.0; other levels and metadata formats are not bootable.

Workload Isolation (sandboxd)

The container runtime plane — CRI containerd, the kubelet, and all pods — now runs inside a dedicated PID and
mount namespace anchored by a new sandboxd service, instead of sharing machined's namespaces.

sandboxd runs in its own least-privilege SELinux domain (sandboxd_t). if it dies the kernel tears down the
namespace and Talos recreates it — relaunching CRI, the kubelet, and pods — without rebooting the node.
Its logs are available via talosctl logs sandboxd.

Workload isolation is controlled by the workloadIsolation field of the new SecurityProfileConfig document.
talosctl gen config emits it with workloadIsolation: true for Talos 1.14+, so new clusters are isolated by
default
. Clusters upgraded from older versions do not have this document and therefore keep the previous
(non-isolated) behavior until it is added — upgrades change nothing on their own. To enable on an existing
cluster, add the document:

apiVersion: v1alpha1
kind: SecurityProfileConfig
workloadIsolation: true

NOTE: With workload isolation enabled, the deprecated in-tree Kubernetes iSCSI volume plugin does not work
(the kubelet cannot reach the host iscsid across the sandbox); use a CSI driver instead. See the in-tree
volume plugin deprecation note.

ICMP send_redirects Disabled by Default

Talos now sets net.ipv4.conf.all.send_redirects=0 and net.ipv4.conf.default.send_redirects=0 by default,
preventing the node from emitting ICMP redirect messages. This aligns with CIS Benchmark recommendations and
does not affect normal Kubernetes pod or service traffic. Nodes that deliberately act as L3 gateways relying
on ICMP redirects can override this via machine.sysctls.

Support Bundle Encryption

The talosctl support command now encrypts support bundles using the age encryption tool, enhancing the security of support data.
The default set of recipients includes the 'siderolabs' GitHub organization members, but it can be overridden with custom recipients.

Dedicated System Volumes

The ETCD, CRI, KUBELET and LOG system volumes (/var/lib/etcd, /var/lib/containerd, /var/lib/kubelet and /var/log) can now be placed on dedicated partitions via a VolumeConfig document with provisioning set (optionally encrypted). By default they remain directories under the EPHEMERAL volume.

apiVersion: v1alpha1
kind: VolumeConfig
name: ETCD
provisioning:
  minSize: 1GB
  maxSize: 2GB

The backing (directory vs. dedicated partition) is fixed at cluster creation: switching an already-provisioned node between the two is rejected.

A dedicated partition has its own mount, so the mount.secure option (nosuid/noexec/nodev, enabled by default) can be set per volume; directory-backed volumes inherit the EPHEMERAL mount options.

Note that with ETCD on a dedicated partition, etcd data no longer lives under EPHEMERAL. Resetting a control plane node with only the EPHEMERAL partition wiped will not clear etcd data; wipe the ETCD volume to reset etcd.

TLS 1.3 Minimum Version

Talos now runs etcd and kube-apiserver with a minimum TLS version of 1.3, improving security by leveraging the latest TLS features and cipher suites.
Custom settings for cipher suites have been removed, as they are ignored when TLS 1.3 is used, which simplifies configuration and ensures the use of modern, secure defaults.

Udev Rules Multi-document Configuration

Talos introduces new multi-document configuration UdevRulesConfig document for configuring custom udev rules.
The old v1alpha1 .machine.udev.rules field is still supported for backwards compatibility, but new deployments should use the new document.

If both old and new configuration sources are used, UdevRulesConfig takes precedence.

List of changes:

  • Deprecated .machine.udev.rules in the v1alpha1 config; use the UdevRulesConfig document for custom udev rules.
Unattended Install Configuration

Talos introduces a new UnattendedInstall multi-document config kind which replaces the deprecated .machine.install
section of the v1alpha1 config. The document carries the installer image and a provisioning section with a CEL
volumeSelector to match the install disk, plus a wipe option.

When the UnattendedInstall document is present, the install is driven by the new UnattendedInstallController
(exposing an UnattendedInstallStatus resource) instead of the legacy install sequence.

talosctl gen config and talosctl cluster create now generate the UnattendedInstall document by default.
The .machine.install field remains supported for backwards compatibility and is still used for older version contracts.

Component Updates

Linux: 6.18.41
Kubernetes: 1.37.0-beta.0
containerd: 2.3.3
etcd: 3.7.1
Flannel: 0.28.8
runc: 1.5.1
CoreDNS: 1.14.6

Talos is built with Go 1.26.5.

Virtual Ethernet Pairs

Talos now supports declarative virtual Ethernet (veth) pairs through the new VethConfig multi-document
configuration kind. Both endpoints are created in the host network namespace and support the common link settings,
addresses, routes, and multicast configuration.

For example, the following configuration creates a pair named veth-host and veth-router with an address on each
endpoint:

apiVersion: v1alpha1
kind: VethConfig
name: veth-host
addresses:
  - address: 10.3.0.1/30
peer:
  name: veth-router
  addresses:
    - address: 10.3.0.2/30
XFS Allocation Group Geometry

On non-rotational devices mkfs.xfs sizes the allocation group count to the number of CPUs, bounding the
allocation group size from below at 4 GiB only. On machines with many cores and a modest disk this produces
hundreds of tiny allocation groups, which squeezes the AG-local reflink/rmap metadata (leading to spurious
ENOSPC on reflink-heavy workloads while the filesystem still has plenty of free space) and inflates the
journal at the same time.

Talos now keeps XFS allocation groups at 64 GiB or above when it formats a volume. The bound can be changed
per volume, and setting it to zero restores the stock mkfs.xfs behavior:

apiVersion: v1alpha1
kind: VolumeConfig
name: EPHEMERAL
filesystem:
  xfs:
    minAllocationGroupSize: 128GiB

The same filesystem.xfs.minAllocationGroupSize setting is available for UserVolumeConfig.

Note: allocation group geometry is fixed when the filesystem is created, so this only affects volumes
formatted by Talos 1.14 or later. Existing volumes keep their current geometry until they are wiped and
re-created (e.g. talosctl reset --system-labels-to-wipe=EPHEMERAL).

XFS scrub

Talos now supports automatically running background online filesystem maintenance tasks. Currently,
only XFS using xfs_scrub tool is supported.

This behavior can be enabled globally using a FilesystemScrubConfig document, or on per-volume
basis using a field in corresponding VolumeConfig documents.

Contributors
  • Andrey Smirnov
  • Noel Georgi
  • Mateusz Urbanek
  • Maja Bojarska
  • Utku Ozdemir
  • Orzelius
  • Erwan Leboucher
  • Kevin Tijssen
  • Lukasz Raczylo
  • Mickaël Canévet
  • Oguz Kilcan
  • Dmitrii Sharshakov
  • Dmitriy Matrenichev
  • Edward Sammut Alessi
  • Rokoucha
  • buckaroo
  • immanuwell
  • kastakhov
  • Aleksei Sviridkin
  • Andras Elso
  • Ansgar Dahlen
  • Artem Chernyshev
  • Benoît Knecht
  • Calin
  • Christian Korneck
  • Dario Emerson
  • David Orman
  • Dharsan Baskar
  • Dmitry Sharshakov
  • Filip Boye-Kofi
  • Fritz Schaal
  • Immanuel Tikhonov
  • Jaakko Sirén
  • Jonny
  • Justin Garrison
  • Konstantin Nesterov
  • Mario Cole
  • Mark Glants
  • Maxime Bertin
  • Nico Berlee
  • Pranav Patil
  • YANG JOO WOONG
  • Zadkiel AHARONIAN
  • appkins
  • ctr49
  • imusmanmalik
Changes
488 commits

  • @​0d1f6e5 release(v1.14.0-beta.1): prepare release
  • @​1ab88f7 fix: load the raid1 module for configured MD arrays
  • @​9e8568d fix: use inmem containerd for installs/upgrades
  • @​8cf28da fix: preserve kmsg reconciliation after config changes
  • @​311b6fd fix: make reset during boot phase more robust
  • @​945d1cd feat: bump kernel to 6.18.41
  • @​4e77d40 fix: restore the systemd-timesync best-sample check in spike detection
  • @​4444a18 test: inspect host mount state from the current thread
  • @​b7c0497 fix: race between vol.cfg. and vol.mgr. ctrl
  • @​ef9a091 feat: allow attaching extra disks to controlplane machines
  • @​a418c0e test: fix CRI restart event assertion race
  • @​a9bfdbd fix: ignore insecure-only imager assets
  • @​54e3b20 fix: hold the darwin vmnet bridge open for the network lifetime
  • @​bc59389 fix: drop the OOM config rule about overall system memory PSI
  • @​69be56e chore: add some initial set of libvirt SELinux policies
  • @​6170ad8 fix: validate kubespan & discovery config correctly for multi-doc
  • @​6e58c6d test: fix ded. vol. plumbing in integration tests
  • @​b644d16 fix: allow directory-backed volumes in reset api
  • @​28e7a87 feat: bump etcd to v3.7.1
  • @​2c657c2 feat: bump kernel to 6.18.40
  • @​b1bdc8c test: restart qemu process several times on startup failures
  • @​7533057 feat: support route imports between BGP instances
  • @​a947837 docs: remove duplicated docs in the markdown for CLI
  • @​6f17c50 fix: verify the public key signed images correctly
  • @​570fe34 fix: generate backwards compatible etcd encryption config
  • @​f779081 fix: use context without cancelation for etcd locks
  • @​67e61ef feat: add the fs_scrub controller
  • @​1c15645 fix: override DHCP search domains via explicit ResolverConfig domains
  • @​fd8dbd8 fix: skip pod check if desired number of pods is zero
  • @​9aede54 feat: add kubeimportlinter for versioned k8s imports
  • @​ae93d14 fix: redact resource specs in the merge controllers
  • @​fc5743c feat: add GrubUseUKICmdline install option
  • @​6bba777 feat: add named native BGP instances
  • @​c5ab22f feat: move Talos API access from Kubernetes config to multi-doc
  • @​b1abd9c fix: split the up/finished service events
  • @​644ecbc feat: add discovered volumes status controller
  • @​6be2b13 feat: add veth pair support
  • @​7514401 fix: drop the controlplane static pod change
  • @​9a521f6 fix: preserve container tasks across CRI restarts
  • @​9048d41 fix: fix a nil-map assignment panic in configpatcher
  • @​45eaf20 release(v1.14.0-beta.0): prepare release
  • @​7e58e04 feat: add dedicated CRI configuration documents
  • @​076c381 fix: race with PCR extensions and volume unlock
  • @​8888419 fix: teardown ephemeral mount request during reset
  • @​c793bcb fix: configure bonds during initial link creation
  • @​9b3bf6e fix(talosctl): prevent duplicate QEMU config server ports
  • @​fa6cd1c fix(machined): preserve health when services reach running
  • @​9d5554e fix(machined): wait for host namespace commands through reaper
  • @​fc08533 chore: update dependencies
  • @​c08863c feat: provide different heuristics for xfs allocation groups
  • @​e955d9b feat: update CoreDNS to 1.14.6
  • @​c3f757f feat: update Flannel to 0.28.8
  • @​fada0d9 fix: provide non-sensitive KubeletStatus resource
  • @​c680852 fix: volume mount race (third attempt) around service restart
  • @​b185752 feat: refactor KubePrism config into multidoc
  • @​499d4eb test: update Calico in canal reset test
  • @​5b6ed00 test: add a test for kata-qemu runtime class
  • @​1a07538 feat: allow "duplicate" kinds in the config patches
  • @​06943be feat: update Kubernetes to 1.37.0-beta.0
  • @​01f2a14 fix: preserve trailing rate-limited trigger events
  • @​46fab80 test: stabilize AWS readiness and Talos 1.13 QEMU config
  • @​a26ac74 feat: move static pods and manifests into multi-doc
  • @​67464cb fix: update the vulnerability dates and description
  • @​4920ee0 feat: update Linux to 6.18.39
  • @​286fa80 feat: include CA into kube-apiserver serving certificate
  • @​6d65e22 feat: drop kubernetes flexvolume mounts
  • @​4935e94 feat: refactor kubelet's config into KubeletConfig
  • @​241bd0f feat: custom cfg for system volumes (cri, kubelet, etcd)
  • @​ea95578 fix: talosctl build
  • @​c2b7636 feat: add UFSHC and some other modules
  • @​2193b57 feat: native BGP support via embedded GoBGP
  • @​2e42c59 fix: add ca-certificates to talosctl
  • @​0f55e1f feat: refactor Kubernetes configs into KubeNodeConfig
  • @​6efdc8f fix: zero MD superblock via block wipe on destroy
  • @​f78f5e5 fix: vrf sorting
  • @​7738518 fix: oom podruntime protection
  • @​c1184d3 feat: update to runc 1.5.1
  • @​4bff7eb feat: support reboot and sync for remote provisioner
  • @​c791fa8 feat: add host-namespace debug profile
  • @​e370e40 feat: implement KubeClusterConfig
  • @​37c78bf fix(ci): skip ephemeral noexec test on 1.13
  • @​0ab6695 feat: update Kubernetes to 1.37.0-alpha.3
  • @​443ca17 test: bump test dependencies
  • @​c424208 fix: enable noexec for EPHEMERAL only for new machines
  • @​fc9f726 feat: bump CoreDNS, Flannel
  • @​352b1bd fix: use symlinks for init aliases
  • @​883775a fix: move sandboxd into a separate cgroup
  • @​099a2ce fix: remote provisioner name
  • @​ff67aaf feat: bump go dependencies
  • @​79c0c54 feat: add iommufd as a kernel module
  • @​f34e93f fix: do proper backoff for NTP Kiss-of-Death responses
  • @​a3e644d chore: bump tools and pkgs
  • @​efa88f2 fix: flaky tests
  • @​17a1347 feat: add ignoreRoutes option to DHCPv4 config document
  • @​2519bf2 fix: make audit restartable
  • @​54b4bbc fix: provide correct handler for Ctrl-Alt-Delete sequence
  • @​87e126a feat: isolate cri, kubelet and pods in a sandbox namespace
  • @​3fb8f4e fix: avoid image cache mount request churn
  • @​9753fc2 fix: e2e test flakes
  • @​f756ff2 feat: kubenetworkconfig supports per-node pod cidr configuration
  • @​b42c429 fix(ci): fix more flaky tests
  • @​5d97ecc feat: bring in ifb.ko module
  • @​6769a1d fix: terminate log persistence a bit harder
  • @​98cce79 fix(ci): extensions test
  • @​057d554 test: assert dm transport for device-mapper disks
  • @​9fd16a2 feat: bump etcd to 3.7.0
  • @​3048eeb feat: support booting from MD RAID1 array
  • @​e1fc7a4 fix: do not block volume lifecycle teardown on failed user volumes
  • @​147dea1 feat: add --no-reboot flag to upgrade cmd
  • @​1b23b11 chore: update pkgs and tools
  • @​bfa9fb4 fix: flaky tests
  • @​a1ede48 test: fix testremovemember etcd integration flake
  • @​ea90e69 feat: add MD RAID gRPC service and reconcile controllers
  • @​74486ef chore: update deps
  • @​f59c3cc feat: implement service account configuration
  • @​baff2d3 test: fix some test flakiness
  • @​5450ec3 fix: use a forked version of secure-io/siv-go
  • @​33fac3f test: stabilize netapp trident csi fio runs
  • @​afdde2a chore(ci): add netapp trident csi integration tests
  • @​21eca15 fix: print link status changes
  • @​210f4e3 fix: shutdown/reboot via usermode helpers
  • @​d193f27 test: fix cilium test config patching
  • @​e068980 fix: flaky tests
  • @​b7398ec feat: move kernel module config into multi-doc
  • @​55bc643 fix: flaky serviceaccount suite test
  • @​dced7d5 fix: correctly treat guaranteed QoS pods in the OOM handler
  • @​f783f66 feat: implement controlplane only config validation
  • @​d0291bb feat: extract Kubernetes CA config into a separate document
  • @​97ed958 chore: use lefthook globs to skip noop jobs
  • @​a145c63 chore: lefthook USERNAME env, post-commit hook
  • @​f836707 fix: use UnattendedInstallConfig for extensions
  • @​67293c8 chore: add lefthook.yml
  • @​726ea8f chore: switch v1alpha1 validation to use cluster config struct
  • @​d1d8480 feat: add mdadm tooling and udev rules
  • @​020de3f chore: update go dependencies
  • @​ae84f56 chore: remove orphaned unattendedinstall.md
  • @​4160737 feat: add UnattendedInstall config and controller
  • @​4e5b4c6 feat: extract clusterid and clustersecret to discoveryidentityconfig
  • @​0a641f2 refactor: simplify device status controller
  • @​99da7f2 fix: data race in manifest sync
  • @​54ac1cb fix: provide cooldown period for the QoS trigger
  • @​7885625 feat: udevd controller and udev rules config document
  • @​6e34da2 feat: delegate drain ops to go-kubernetes/nodedrain
  • @​e9e027c fix: kubelet stuck restarting
  • @​6f481b4 fix: decode extraArgs list values correctly
  • @​c8bdcc2 feat: update runc to 1.5.0
  • @​eae11ab feat: allow user managed etc files
  • @​47d4bd8 feat: set user-agent for Kubernetes client
  • @​ba926c6 chore: update golangcilint config
  • @​45497bd feat: bring systemd 261.1
  • @​8d9ecec refactor: improve stability for process_test.go
  • @​31221e7 refactor: talosctl running tasks are yellow
  • @​b268a6b feat: refactor CoreDNS config into multi-doc
  • @​416d5fe fix: race in etcd member add
  • @​c244e4c fix: building integration test binary on darwin
  • @​b15a64b chore: bump rekor for GHSA-47q9-m4ww-924m
  • @​cd8b0fe release(v1.14.0-alpha.2): prepare release
  • @​917820c chore: sync pkgs/tools
  • @​b34be14 fix: cli.md codeblock generation
  • @​25abcc6 docs: update kubespanconfig to match discoveryserviceconfig
  • @​742589f feat: support multiple discovery service configs
  • @​fc3f27d chore: enrich the SBOM with Go module licenses
  • @​47d5c33 fix: handle image cache being disabled
  • @​1a965ae test: disable LongHorn ublk test and add more cores
  • @​6d03b3f fix: align documented image cache partition label
  • @​6447d85 fix(talosctl): use aio threads on darwin
  • @​f856d18 fix: image verification with referrers
  • @​11a7fbe feat: extract kube-apiserver config into multi-doc configs
  • @​337654d test: fix rook-ceph tests
  • @​e33a868 feat: add AMD XGBE driver to initramfs
  • @​bd2d624 fix: revert coredns to 1.14.2
  • @​7c4e644 feat: update Linux to 6.18.36
  • @​6e23a5c chore: refactor bare opentree_clone into a mount helper
  • @​dfbd309 fix(talosctl): prevent appending type 11 smbios values on restart
  • @​5926dd7 test: support running integration test against remote provisioner
  • @​f146c6a feat: refactor /etc mounts
  • @​ebe3641 chore: bump containerd to 2.3.2
  • @​bc30c61 chore: bump deps (go, k8s, docker)
  • @​00d739d test: skip fstrim default schedule on cloud tests
  • @​d9c6edf fix: bump number of open files for etcd
  • @​990c539 chore: update tools and pkgs 2026-06-17
  • @​325be7c refactor: config generate uses multi-doc sysctlconfig
  • @​d693063 fix: clean up and overhaul mount ops
  • @​a021940 fix: cgroups cleanup
  • @​58d8b71 fix: stop the log persistence and close all files on shutdown
  • @​4b32ebc refactor: simplify trustd/apid rootfs setup
  • @​dc98e35 feat: implement filesystem trim support
  • @​897bef6 feat: introduce KubeProxyConfig multi-doc
  • @​ebde543 feat: introduce BootID resource
  • @​cd178b9 fix: ensure consistent manifest apply order
  • @​19fac61 feat: remote provisioner
  • @​b6412e0 fix: drop one more reference to removed 'nodes'
  • @​be7f7a7 feat: add human-readable size fields to LVM resources
  • @​d4e0ca1 fix: make LVM reconciliation robust and idempotent
  • @​0dbc1e5 chore(ci): fix flaky test
  • @​b687a47 feat: implement an option to allow discards on encrypted volumes
  • @​3fc981c fix: improve security of scheduler/controller-manager
  • @​5d4af9f fix: gracefully stop node containers before removal
  • @​c1593d8 fix: honor FailurePauseTimeout when pausing before reboot
  • @​506dc13 feat: add imager flag to set the SecureBoot key enrollment mode
  • @​5d4ba70 refactor: generate pod definitions in k8stemplates
  • @​995bc30 feat: drop apply config method reboot
  • @​18f6cb4 fix: increment time epoch on wall-clock jump when time sync is disabled
  • @​755a8c8 feat: update etcd to 3.7.0-rc.0
  • @​a0c76fa feat(talosctl): implement cluster logs
  • @​db05216 feat(talosctl): support rebooting cluster nodes
  • @​0a04f46 feat(talosctl): use gateway dns for cluster
  • @​cf3eb1c chore(talosctl): disable kexec for cluster create on arm64
  • [@​180182b](https://redirect.github.com/siderolabs/t

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@truecharts-admin

truecharts-admin commented Jul 23, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.26.4 -> 1.26.5
github.com/cosi-project/runtime v1.16.1 -> v1.16.2
github.com/google/cel-go v0.29.0 -> v0.29.2
github.com/jsimonetti/rtnetlink/v2 v2.2.1-0.20260614152944-ab8601692836 -> v2.2.1-0.20260714114318-c87a4183a51a
github.com/petermattis/goid v0.0.0-20260330135022-df67b199bc81 -> v0.0.0-20260713124913-97594f28f5ca
github.com/planetscale/vtprotobuf v0.6.1-0.20250313105119-ba97887b0a25 -> v0.6.1-0.20260702190614-8ae5a48058df
github.com/siderolabs/gen v0.8.6 -> v0.8.7
go.yaml.in/yaml/v4 v4.0.0-rc.5 -> v4.0.0-rc.6
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f -> v0.0.0-20260709172345-9ea1abe57597
google.golang.org/genproto/googleapis/api v0.0.0-20260720171339-e059f2f05d78 -> v0.0.0-20260720211330-0afa2a65878a
google.golang.org/genproto/googleapis/rpc v0.0.0-20260720171339-e059f2f05d78 -> v0.0.0-20260720211330-0afa2a65878a

@trueforge-bot

trueforge-bot Bot commented Jul 23, 2026

Copy link
Copy Markdown

🚀 HelmRelease CI Report

Overall Status

Stage Result
🔍 Detect HelmReleases success
🧪 Helm Tests skipped

🧪 HelmReleases Tested


⏭️ HelmReleases Skipped


Result

ℹ️ No HelmReleases required testing

@truecharts-admin
truecharts-admin force-pushed the renovate/github.com-siderolabs-talos-pkg-machinery-1.14.x branch from ae906c3 to 02d5202 Compare July 31, 2026 13:54
@truecharts-admin truecharts-admin changed the title fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.14.0-alpha.2 → v1.14.0-beta.0 fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.14.0-alpha.2 → v1.14.0-beta.1 Jul 31, 2026
@truecharts-admin
truecharts-admin force-pushed the renovate/github.com-siderolabs-talos-pkg-machinery-1.14.x branch from 02d5202 to 375be59 Compare August 2, 2026 08:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant