Talos 1.14.0-alpha.2 (2026-06-26)
Welcome to the v1.14.0-alpha.2 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)
The EPHEMERAL volume (/var) is now mounted with noexec in addition to the existing nosuid and nodev,
blocking binary execution from /var.
Workloads that exec binaries placed under /var will break.
For example, Longhorn v1's instance-manager exec's engine binaries the engine-image DaemonSet drops 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: falseNOTE: Setting
secure: falsewill also disablenosuidandnodev, which may have security implications. Use with caution.
Upgrade note: apply this VolumeConfig patch before upgrading, otherwise affected workloads will fail after the next reboot. 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.
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.
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, use the following machine config patch:
machine:
files:
- content: |
[plugins]
[plugins."io.containerd.nri.v1.nri"]
disable = true
path: /etc/cri/conf.d/20-customization.part
op: createDefault 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 Search Domains
DHCPv4 search domains are now applied to the resolver configuration.
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.
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 weekThe 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: 24h0m0sFlannel CNI
Talos now configures Flannel with the EnableNFTables option enabled, which uses nftables native backend instead of iptables-nft compatibility layer.
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.sysctlsin the v1alpha1 config; use theSysctlConfigdocument for kernel sysctl configuration. - Deprecated
.machine.sysfsin the v1alpha1 config; use theSysfsConfigdocument for sysfs 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.
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.
Talos introduces support for configuring multiple discovery service endpoints.
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.secretboxEncryptionSecretin the v1alpha1 config; use theKubeEtcdEncryptionConfigdocument for full etcd encryption configuration. - Deprecated
.cluster.apiServerin the v1alpha1 config; use theKubeAPIServerConfig,KubeAdmissionControlConfig,KubeAuditPolicyConfig,KubeAuthenticationConfigandKubeAuthorizerConfigdocuments for kube-apiserver configuration. - Deprecated
.cluster.controllerManagerin the v1alpha1 config; use theKubeControllerManagerConfigdocument for kube-controller-manager configuration. - Deprecated
.cluster.schedulerin the v1alpha1 config; use theKubeSchedulerConfigdocument for kube-scheduler configuration. - Deprecated
.cluster.proxyin the v1alpha1 config; use theKubeProxyConfigdocument for kube-proxy configuration. - Deprecated
.cluster.networkin the v1alpha1 config; use theKubeNetworkConfigdocument for Kubernetes network configuration; Flannel can be configured using theKubeFlannelCNIConfigdocument. - Deprecated
.cluster.discoveryin the v1alpha1 config; use theDiscoveryServiceConfigdocument for discovery service configuration. The v1alpha1 config andDiscoveryServiceConfigare mutually exclusive.
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.
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.
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.
Component Updates
Linux: 6.18.36
Kubernetes: 1.36.2
containerd: 2.3.2
etcd: 3.7.0-rc.0-0
Flannel: v0.28.5
runc: 1.5.0-rc.3
CoreDNS: 1.14.2
Talos is built with Go 1.26.4.
Contributors
- Andrey Smirnov
- Noel Georgi
- Mateusz Urbanek
- Maja Bojarska
- Orzelius
- Erwan Leboucher
- Utku Ozdemir
- Lukasz Raczylo
- Mickaël Canévet
- Dmitrii Sharshakov
- Dmitriy Matrenichev
- Oguz Kilcan
- Rokoucha
- buckaroo
- immanuwell
- Aleksei Sviridkin
- Ansgar Dahlen
- Artem Chernyshev
- Benoît Knecht
- Christian Korneck
- David Orman
- Dharsan Baskar
- Edward Sammut Alessi
- Filip Boye-Kofi
- Fritz Schaal
- Immanuel Tikhonov
- Jaakko Sirén
- Jonny
- Justin Garrison
- Kevin Tijssen
- Konstantin Nesterov
- Nico Berlee
- Pranav Patil
- YANG JOO WOONG
- Zadkiel AHARONIAN
- appkins
- kastakhov
Changes
332 commits
- cd8b0fe39 release(v1.14.0-alpha.2): prepare release
- 917820cb3 chore: sync pkgs/tools
- b34be14e9 fix: cli.md codeblock generation
- 25abcc6b5 docs: update kubespanconfig to match discoveryserviceconfig
- 742589f50 feat: support multiple discovery service configs
- fc3f27d79 chore: enrich the SBOM with Go module licenses
- 47d5c3351 fix: handle image cache being disabled
- 1a965aec3 test: disable LongHorn ublk test and add more cores
- 6d03b3f61 fix: align documented image cache partition label
- 6447d854f fix(talosctl): use aio threads on darwin
- f856d1808 fix: image verification with referrers
- 11a7fbe4c feat: extract kube-apiserver config into multi-doc configs
- 337654d2b test: fix rook-ceph tests
- e33a86825 feat: add AMD XGBE driver to initramfs
- bd2d6242a fix: revert coredns to 1.14.2
- 7c4e644f8 feat: update Linux to 6.18.36
- 6e23a5c2f chore: refactor bare opentree_clone into a mount helper
- dfbd30959 fix(talosctl): prevent appending type 11 smbios values on restart
- 5926dd70d test: support running integration test against remote provisioner
- f146c6a18 feat: refactor /etc mounts
- ebe364117 chore: bump containerd to 2.3.2
- bc30c61a1 chore: bump deps (go, k8s, docker)
- 00d739d0a test: skip fstrim default schedule on cloud tests
- d9c6edf01 fix: bump number of open files for etcd
- 990c5395c chore: update tools and pkgs 2026-06-17
- 325be7cd8 refactor: config generate uses multi-doc sysctlconfig
- d6930633b fix: clean up and overhaul mount ops
- a0219404d fix: cgroups cleanup
- 58d8b71c4 fix: stop the log persistence and close all files on shutdown
- 4b32ebc17 refactor: simplify trustd/apid rootfs setup
- dc98e3553 feat: implement filesystem trim support
- 897bef633 feat: introduce KubeProxyConfig multi-doc
- ebde543cf feat: introduce BootID resource
- cd178b9f3 fix: ensure consistent manifest apply order
- 19fac6151 feat: remote provisioner
- b6412e031 fix: drop one more reference to removed 'nodes'
- be7f7a7db feat: add human-readable size fields to LVM resources
- d4e0ca1ba fix: make LVM reconciliation robust and idempotent
- 0dbc1e529 chore(ci): fix flaky test
- b687a47ab feat: implement an option to allow discards on encrypted volumes
- 3fc981c57 fix: improve security of scheduler/controller-manager
- 5d4af9f33 fix: gracefully stop node containers before removal
- c1593d8a3 fix: honor FailurePauseTimeout when pausing before reboot
- 506dc1323 feat: add imager flag to set the SecureBoot key enrollment mode
- 5d4ba702e refactor: generate pod definitions in k8stemplates
- 995bc30d5 feat: drop apply config method reboot
- 18f6cb4d0 fix: increment time epoch on wall-clock jump when time sync is disabled
- 755a8c8eb feat: update etcd to 3.7.0-rc.0
- a0c76fad1 feat(talosctl): implement cluster logs
- db052165c feat(talosctl): support rebooting cluster nodes
- 0a04f463a feat(talosctl): use gateway dns for cluster
- cf3eb1cad chore(talosctl): disable kexec for cluster create on arm64
- 180182b0f fix: correct the link alias condition
- ac9014f05 fix: introduce pull attempt stall detection for image pull
- f2286d616 fix: move Flannel netpol patch to the controlplane
- 9986c0b16 feat: bump kernel to 6.18.35
- e8845fba6 fix: route ProxyURL test via reachable endpoint
- 44acedf30 feat: add declarative LVM logical volume provisioning
- f6058a11b feat: grab support bundle via client factory
- cdd719773 feat: add CPUCores resource
- 8e41eb1bd feat: verify go.mod tidiness in generate target
- b19e2ea42 feat: add kube-apiserver probes
- a321a1dcc feat: support proxy-url in talosconfig context
- bb2ac7546 feat: parse schematic info out of extension status
- 0c02a5a07 fix: align flannel MTU with kubespan to avoid permanent fragmentation
- 3d5fd822c feat: expose disk firmware and BIOS version
- 30115981c fix: relax LUKS header validation
- 5923199fb refactor: use ClientFactory for the action tracker
- 72c0ced3c refactor: deprecate sysfs and sysctl in machineconfig
- ee74a41fb fix: handle cluster-scoped resources with a namespace correctly
- 9df5a647a feat: allow to disable access time for EPHEMERAL partition
- 9b667dbde chore: fix lint error in test
- 311378386 test: increase resource inmem buffer to stabilize the tests
- 6f85ce3d2 docs: hack/release.toml explains kernelmodulestatus
- 9bb0a5d01 fix(talosctl): add scrolling to dashboard footer node list
- 4c029c2d6 fix: machine configuration schemas
- c3052e845 feat: move CNI config out of v1alpha1 config
- 1d2f1208c feat: add declarative LVM volume group provisioning
- 85f1d428f chore: refactor tests to use debug api
- c901d47a5 refactor: talosctl streaming commands and more fixes
- 166854959 fix: mark more resources as sensitive
- 58adf2e00 fix: classify installer and imager exits
- 9549930ff feat: update Flannel to v0.28.5
- 27362d18e refactor: replace the callback strategy for most commands
- cb42d9d9a feat: implement support bundle encryption
- 9ae260b55 feat: enable NRI by default
- d1d5847b0 fix: flaky test
- 0f2331586 feat: support external secureboot and pcr signers
- b349d919d feat: enforce strict QoS ordering in OOM victim selection
- 76d9b49bd fix(ci): aws nvidia tests
- 3131826cd fix: provide NTS sync with bad initial clock state
- 89e307e58 fix: etcd client leak in the (legacy) Upgrade API
- 476c4d050 fix: recreate dns server and listeners on host DNS runner restart
- 9a283d9b1 feat: bump Go to 1.26.4
- 4759dc246 chore: bump dependencies
- 26a25a073 chore(ci): drop homebrew workflow
- fa8a55192 feat: update etcd to v3.6.12
- 41fcab476 feat: update kernel to 6.18.34
- 8ba00612b feat: update dependencies
- 6e2dec1ea refactor: update talosctl commands to stop using WithNodes
- f9ad63a35 feat: add custom logging convention linter
- 30dbce03f chore: make oci images reproducible
- 38244fd5b feat: add sbom builder
- 5177c50e2 refactor: deprecate loadedkernelmodule
- c2eef3645 fix: health request server-side
- d6eff8eff refactor: drop multi-nodes proxying for the dashboard
- 2e547a964 refactor: deprecate multi-node proxying
- ddcc519e1 fix: add --fail to image-signer curl download
- e5b0b1dde fix: normalize log fields
- d8e95c396 fix: drop installer from bundle
- 7aad9ec81 feat: update pkgs, tools, Go dependencies
- b50ee396f fix: fix trace fix to also lookup release branches
- 027c93d25 release(v1.14.0-alpha.1): prepare release
- 4eb862d09 feat: add LVMService for VG/LV/PV removal
- b88f16a52 fix: use POSIX shell idioms for error propagation
- 5290eb374 fix: suppress ICMP redirects by default
- 7b4aba2e5 fix: marshal kube-scheduler config correctly with int types
- 894be9bf5 fix: touch rootfs files with SOURCE_DATE_EPOCH
- cde82224e fix: ignore cgroups with zero rank in OOM handler
- bc0372411 fix: bring in a change to BCM2712_MIP
- f572c33f1 chore: fail on makefile error
- e317d4b47 fix: drop modprobe path and enforce usermode helper
- 89e53f610 fix(machined): make built-in mod state always 'permanent'
- cfbec9bd5 test: skip UEFI vars wipe if TPM is enabled
- 1e31deda3 fix: create parent directories when extracting tar archives
- 14dc188bd chore: verify go-containerregistry preserves symlinks
- 951922dfb fix: guard apply config API call
- 3e173adf4 feat: move kube-controller-manager config to multi-doc
- b5cda3438 fix: reset QEMU UEFI variable store when disk is wiped
- 4a17ac6ac chore: script for tracking fixes made in upstream toolchain/tools/pkgs
- d71edeead feat: add LVM status resource definitions
- 4aeba1cde fix: perform backwards-compatible kernel args cleanup
- 9b7b2bf36 feat: implement support for btrfs user volumes
- 03ee8ee3a feat(machined): support instance tags on Akamai
- d19f9ade0 fix: memorymodules resource reporting
- a6edcf6f3 chore: move out adv library
- 40e66eac7 fix: bump Go golang.org/x modules
- e23ca4a0a chore(ci): add upgrade tests for trustedboot
- e3003c0ec chore: bump tpm nonce size to match the algorithm used
- 8fd04da1f feat: add bnxt_re module to the rootfs
- 1cfab00f1 fix: update etcd experimental args
- ad96fc6ae fix: relax hostname config validation
- efd735334 chore(ci): add missing labels, move release metadata check to job
- 9ec045059 feat: update containerd to 2.3.1
- 42f4144a1 feat: introduce new KubeSchedulerConfig
- f2b7f39db refactor: move Args type out of config/v1alpha1
- b959dcb3e fix: bump Kubernetes to 1.36.1 in one more place
- 8ecc77f1a feat: update default Kubernetes version to 1.36.1
- cbd9c3745 chore: rekres to secure slack workflows
- 6a92fc653 test: update Canal version used in the tests
- be12d3d08 feat: support 4k sector size disk images
- a7e8f4c28 chore(ci): fix cloud image upload job name
- 4319399f6 feat: introduce more modular Linux kernel
- ed5df89f6 feat(ci): rotate credentials
- a6a984ff7 chore(ci): fix the job conditions
- ecb7d4588 feat: enable Flannel nftables mode
- 9919ff781 feat: update Linux to 6.18.32
- 1a7d136e4 feat: add Azure Secure Boot imager profile
- df68e7391 feat: implement kernel module status resource
- e98ee99d4 fix: streamline config validation flow
- d7f0a2fd4 feat: update Linux to 6.18.31
- 2b66e25a5 chore: update image signer
- 5aa1795f9 chore: drop e2e step dependencies
- d42b3b396 feat: update Linux to 6.18.30
- c3f6f3507 feat: implement static host resolving via host DNS
- 2f06a68ef refactor: split host DNS handler
- e99c5be5a feat: implement DNS over HTTP(S)
- cf6065238 chore: stop publishing installer to ghcr
- 0edabd29c fix: restore some shared (and some lower tier slave) mount propagation
- f1578dc63 fix: image verification issue with registry.k8s.io
- 46b1f8a24 fix: rework how scheduler config is marshaled
- 820a9fa59 chore: fix typos in comments
- 649a384a9 feat: move more kernel stuff to modules
- 4f3ab2012 chore(ci): try fixing homebrew action
- 600c0ab5d feat(ci): validate that extensions PKGS and TOOLS sync with talos
- 76080416b feat: redact more machine config secrets and audit redactors
- aabf63957 docs: drop controlplane endpoint examples
- b48a2bef4 test: relax kernel-default routing rule assertion
- d2208b034 refactor(talosctl): propagate command context throughout, handle interrupts
- 0760b5c28 fix: normalize source name for syft consistency
- c49ac0ec2 docs: document release policy
- ec7e6ef9f feat: bump in-toto indirect dependency
- 21858a674 feat: update kernel to 6.18.29
- 5a49dc61d feat: migrate Image Cache config to multi-doc
- 574298ec1 fix: handle empty GCP operation errors
- 366b10b79 feat: dockerfile improvements
- 9a1d9d0af feat: bump go 1.26.3
- 6eec1c229 feat: support DNS over TLS for upstream resolvers
- dee139aef feat: revert update CoreDNS to 1.14.3
- 087bc4c18 chore: lint packages under tools
- 9e7516fae fix: clarify documentation for image verification pattern
- 41c8e9dc4 feat: bump dependencies
- 2b6c06ef5 feat: update CoreDNS to 1.14.3
- 6b6f7978b feat: update containerd to 2.3.0
- f9c4f90da feat(ci): longhorn v2 ublk tests
- 84d169c62 fix: make dnsd retry listening
- 689974bd5 fix: volume mount permissions
- ff0f66bdf fix: skip reserved routing rule priorities
- 850e2c754 feat: drop fakeroot, use go helper
- 0c1bd701a feat: add golangci-lint fmt target
- 53bd66956 feat: support conditional start of IPv6 dns servers
- b31d93e0d feat: auto-enroll SecureBoot keys for disk images
- 849a68006 test: update pkgs to test new extensions
- c30a6dfcb fix: preserve DHCP DNS servers
- 5b81b20d3 feat: apply DHCP search domains
- 4e5ff8fa2 fix(ci): zfs test
- 14abe5140 fix: handle gateways which are not on-link routes in dhcp4
- e1f759af8 chore: fix lint issues automatically
- 664c5f643 chore: update tools
- c64df2b61 fix: add missing kernel modules in rootfs
- f73c24594 feat: run depmod with verification on rootfs build
- 1371596d7 fix: provide proper AWS platform metadata
- 4f11f021d feat: implement etcd encryption config (kube-apiserver)
- 876f83643 feat: add support for HTTP Probes
- 9b776d598 feat: update etcd to 3.6.11
- 631a1bc5e fix: bring in hardened kernel
- a349dac03 fix: stale discovered volume children
- 13ce01879 fix: re-enable kexec on arm64
- 32539d4ac fix: deadlock in the makefs ext4 with populated source
- 0f3e1966a fix: panic in Kubernetes manifest sync
- 3bae01ac1 fix: do not pick up a system disk from a loop device
- dedb7a96c fix(talosctl): protect k8sNames map writes with mutex
- cc2be213a fix: drop explicit platform matcher
- 1dffebaf2 fix: mount throws EPERM on virtiofs with SELinux
- 48a481c29 fix: replace Canal manifest with a more recent one
- 6a445406e fix: make lacp active nilable
- 0d1d95c7d fix: bump go-kmsg to fix the timestamp drift
- bd344fd53 fix: reset the ticker when the KubeSpan is disabled/enabled
- 462015bcd release(v1.14.0-alpha.0): prepare release
- 8a037a56e test: fix flaky tests
- 08c81d838 feat: bump kernel to 6.18.25
- fe40b6e58 fix(ci): fetch empty pr labels
- 837a9ed07 feat: move host DNS config into ResolverConfig
- 96a8ecd1e feat: default to factory installer image
- f19eef78b fix: revert add extraArgs from service-account-issuer
- 6821225b6 fix: revert use append instead of prepend in service-account-issuer
- b43c3a124 feat: add quirk for talosctl factory downloads
- df0b9a8da refactor: make all controller unit-test follow modern patterns
- c2948cef2 feat: support auth for Image Factory in cluster create
- 560bcf0ca feat: enforce TLS 1.3 minmum version for Kubernetes components
- 3db14309e fix(talosctl): ensure uncordon runs after reboot/upgrade errors
- ecf2fa855 feat: update Kubernetes to v1.36.0
- 71557eadd fix(ci): skip misc jobs not on pull request
- 026313b7c docs: rename security-insights.yml to lowercase for LFX detection
- dc4ffd490 fix(ci): fix jobs not interpolating matrix due to condition
- 25e2f37e2 chore: generate comments for fields in resource proto
- 149592fa5 fix: watch kubelet's kubeconfig and time out for cache sync
- 1f315e6e9 feat: update Linux to 6.18.23
- 0198eedc2 feat: add NTS (Network Time Security) support for NTP time sync
- 6830a8b97 fix(ci): matrix jobs cleanups
- 71aeb347f test: fix OOM test flake
- 9b9542cc5 test: fix a flake in the manifest sync test
- 863d882b6 test: add image verification for factory.talos.dev
- bba0b4aee chore(ci): nvidia update helm values
- 3399ff4de fix: propagate route table down to the resource
- c684ec60e chore: prepare for Talos 1.14 release
- ed9545d0d chore(ci): bump gpu operator version
- 4de3e4393 fix(ci): cron triggered workflows
- 212182e6f chore: bump container registry library
- c028db0b8 fix: do not flip machine stage to rebooting during shutdown
- 6ce62d9e8 fix(ci): workflow runs with
workflow_run - 509cd9733 fix: boot entry detection
- 5e3f30188 feat(ci): rework to schedule daily runs after a cron
- 7fa4d3919 fix: zfs extensions test
- 1ef8e630a test: allow more tests to run in FIPS strict mode
- bdcc9321b fix: reduce memory dashboard usage
- 2d177af82 chore: update Syft to v1.42.4+patches
- 0d8362119 fix: return failed precondition on upgrade when not installed
- be58eafab fix: wrong slot of encryption key was logged
- 015081c76 feat: update dependencies
- 9fbb7c95d fix: audit trustd code for security
- 986e97fc7 feat: update Flannel to 0.28.4
- f3817d1d1 chore: update sign images to support image name suffix
- e776721f3 feat: update Kubernetes 1.36.0-rc.1
- f6e7346fa fix: encode extra args fields in resources with new id
- 3c7bb80ba chore: bump tools
- 3ba35c9b9 chore(ci): nvidia try UKI boot
- e3e8f01ca chore: bump tools
- 181584a5f fix: handle boot failure
- c464c7e88 fix: upgrade API in maintenance mode (legacy)
- b7512d912 feat: update Kubernetes to 1.36.0-rc.0
- 4ba11156f refactor: allow overriding out image name suffix
- c81aa125c fix: panic in reading PCR values
- 6a3ab87c5 feat(ci): add nvidia arm64 matrix
- 21f459aab fix(talosctl): always use default GRPC dial options
- ca208e514 fix: validate hostDNS forwarding requires hostDNS to be enabled
- 9fcb9e05b feat: bump go to 1.26.2
- 0bfdf7f70 fix: create correct blackhole routes for IPv4
- 52b920032 feat: add client-side Kubernetes node drain to reboot and upgrade commands
- 968ec1e0c refactor: propagate NAME properly, allow to set on build
- acc69c346 fix: set the minimum TLS version to 1.3
- 0cfa6e302 chore: bump some tool dependencies
- 4229bb9d2 feat: add dis-vulncheck tool
- d697f5538 fix: don't set xattrs while decompressing extensions
- 34fb2cbe5 refactor: remove manual shell completion and replace with cobra completion
- 79fa2e300 feat: allow more nvidia and nvme files from extensions
- 414f78a29 feat: allow glibc ld files in etc
- 1bbba4301 feat: update Flannel to v0.28.2
- 55815e0fa fix: handle ISOs with zeroes in volume labels
- 7b6ab0c1c feat: add flag to force fallback to legacy upgrade
- 5e24d5265 feat: add resource view to talosctl dashboard
- 649ab7fe4 fix: add os:meta:writer role to the dashboard
- 10cdfa909 fix: drop talosctl install
- 087ced85f fix: unseal with "slow" TPM
- 11ab0a8c5 fix: drop unused type from ExternalVolume schema
- e2df0f6ce fix: always grow disks
- 919d8c365 chore: drop debug shell
- 783a35851 fix: add metal-agent mode to runtime capabilities
- 37b2221cc docs: add SECURITY-INSIGHTS.yml for OSPS Baseline QA-04.01
- bed2bd414 feat: add graceful power off support to QEMU VM launcher
- 3400059cc fix: incorrect route source for on-link routes
- b3dfbf743 feat: bump musl to 1.2.6
- 4227921b3 test: fix the PKI mismatch test flake
- f2bc2dcc6 feat: update NVIDIA production drivers to 595.58.03
- aa5946dd3 test: fix cron failures for provision-1 & provision-2
- 1dd701efa fix: allow blockdevice wipe in maintenance mode
- 786bf00ab feat: add --platform=all support to image cache-create
- e1f645e3c feat: validate luks headers for tampering
- ad72c7300 test: improve maintenance API provision tests
- 70cefab6a test: fix the flakes in tests with trusted roots
- aacff17f4 test: bump memory for Flannel netpolicy tests
- 9c3459114 feat: update Linux to 6.18.19, CNI to 1.9.1
- 038cb8735 feat: enforce PID check on connections to services over file sockets
- e2b2dd3ea chore: update go-kubernetes library
- 9597714f6 fix: add symlinks nvidia-ctk and nvidia-cdi-hook in /usr/bin
- 8ac47d677 fix: unset rlimits for extension services
- b1a02f368 feat: update Kubernetes to 1.36.0-beta.0
- 362fdc9ec feat: update etcd to 3.6.9
- 0a47f40b3 fix(machined): clear stale bond ARP/NS targets on decode
- 86344639f fix: update diff library to v1.0.1
- eff89d1ed fix: panics in diff algorithms
- 8e1c8a7a9 test: fix the apid test against AWS/GCP
Changes since v1.14.0-alpha.1
112 commits
- cd8b0fe39 release(v1.14.0-alpha.2): prepare release
- 917820cb3 chore: sync pkgs/tools
- b34be14e9 fix: cli.md codeblock generation
- 25abcc6b5 docs: update kubespanconfig to match discoveryserviceconfig
- 742589f50 feat: support multiple discovery service configs
- fc3f27d79 chore: enrich the SBOM with Go module licenses
- 47d5c3351 fix: handle image cache being disabled
- 1a965aec3 test: disable LongHorn ublk test and add more cores
- 6d03b3f61 fix: align documented image cache partition label
- 6447d854f fix(talosctl): use aio threads on darwin
- f856d1808 fix: image verification with referrers
- 11a7fbe4c feat: extract kube-apiserver config into multi-doc configs
- 337654d2b test: fix rook-ceph tests
- e33a86825 feat: add AMD XGBE driver to initramfs
- bd2d6242a fix: revert coredns to 1.14.2
- 7c4e644f8 feat: update Linux to 6.18.36
- 6e23a5c2f chore: refactor bare opentree_clone into a mount helper
- dfbd30959 fix(talosctl): prevent appending type 11 smbios values on restart
- 5926dd70d test: support running integration test against remote provisioner
- f146c6a18 feat: refactor /etc mounts
- ebe364117 chore: bump containerd to 2.3.2
- bc30c61a1 chore: bump deps (go, k8s, docker)
- 00d739d0a test: skip fstrim default schedule on cloud tests
- d9c6edf01 fix: bump number of open files for etcd
- 990c5395c chore: update tools and pkgs 2026-06-17
- 325be7cd8 refactor: config generate uses multi-doc sysctlconfig
- d6930633b fix: clean up and overhaul mount ops
- a0219404d fix: cgroups cleanup
- 58d8b71c4 fix: stop the log persistence and close all files on shutdown
- 4b32ebc17 refactor: simplify trustd/apid rootfs setup
- dc98e3553 feat: implement filesystem trim support
- 897bef633 feat: introduce KubeProxyConfig multi-doc
- ebde543cf feat: introduce BootID resource
- cd178b9f3 fix: ensure consistent manifest apply order
- 19fac6151 feat: remote provisioner
- b6412e031 fix: drop one more reference to removed 'nodes'
- be7f7a7db feat: add human-readable size fields to LVM resources
- d4e0ca1ba fix: make LVM reconciliation robust and idempotent
- 0dbc1e529 chore(ci): fix flaky test
- b687a47ab feat: implement an option to allow discards on encrypted volumes
- 3fc981c57 fix: improve security of scheduler/controller-manager
- 5d4af9f33 fix: gracefully stop node containers before removal
- c1593d8a3 fix: honor FailurePauseTimeout when pausing before reboot
- 506dc1323 feat: add imager flag to set the SecureBoot key enrollment mode
- 5d4ba702e refactor: generate pod definitions in k8stemplates
- 995bc30d5 feat: drop apply config method reboot
- 18f6cb4d0 fix: increment time epoch on wall-clock jump when time sync is disabled
- 755a8c8eb feat: update etcd to 3.7.0-rc.0
- a0c76fad1 feat(talosctl): implement cluster logs
- db052165c feat(talosctl): support rebooting cluster nodes
- 0a04f463a feat(talosctl): use gateway dns for cluster
- cf3eb1cad chore(talosctl): disable kexec for cluster create on arm64
- 180182b0f fix: correct the link alias condition
- ac9014f05 fix: introduce pull attempt stall detection for image pull
- f2286d616 fix: move Flannel netpol patch to the controlplane
- 9986c0b16 feat: bump kernel to 6.18.35
- e8845fba6 fix: route ProxyURL test via reachable endpoint
- 44acedf30 feat: add declarative LVM logical volume provisioning
- f6058a11b feat: grab support bundle via client factory
- cdd719773 feat: add CPUCores resource
- 8e41eb1bd feat: verify go.mod tidiness in generate target
- b19e2ea42 feat: add kube-apiserver probes
- a321a1dcc feat: support proxy-url in talosconfig context
- bb2ac7546 feat: parse schematic info out of extension status
- 0c02a5a07 fix: align flannel MTU with kubespan to avoid permanent fragmentation
- 3d5fd822c feat: expose disk firmware and BIOS version
- 30115981c fix: relax LUKS header validation
- 5923199fb refactor: use ClientFactory for the action tracker
- 72c0ced3c refactor: deprecate sysfs and sysctl in machineconfig
- ee74a41fb fix: handle cluster-scoped resources with a namespace correctly
- 9df5a647a feat: allow to disable access time for EPHEMERAL partition
- 9b667dbde chore: fix lint error in test
- 311378386 test: increase resource inmem buffer to stabilize the tests
- 6f85ce3d2 docs: hack/release.toml explains kernelmodulestatus
- 9bb0a5d01 fix(talosctl): add scrolling to dashboard footer node list
- 4c029c2d6 fix: machine configuration schemas
- c3052e845 feat: move CNI config out of v1alpha1 config
- 1d2f1208c feat: add declarative LVM volume group provisioning
- 85f1d428f chore: refactor tests to use debug api
- c901d47a5 refactor: talosctl streaming commands and more fixes
- 166854959 fix: mark more resources as sensitive
- 58adf2e00 fix: classify installer and imager exits
- 9549930ff feat: update Flannel to v0.28.5
- 27362d18e refactor: replace the callback strategy for most commands
- cb42d9d9a feat: implement support bundle encryption
- 9ae260b55 feat: enable NRI by default
- d1d5847b0 fix: flaky test
- 0f2331586 feat: support external secureboot and pcr signers
- b349d919d feat: enforce strict QoS ordering in OOM victim selection
- 76d9b49bd fix(ci): aws nvidia tests
- 3131826cd fix: provide NTS sync with bad initial clock state
- 89e307e58 fix: etcd client leak in the (legacy) Upgrade API
- 476c4d050 fix: recreate dns server and listeners on host DNS runner restart
- 9a283d9b1 feat: bump Go to 1.26.4
- 4759dc246 chore: bump dependencies
- 26a25a073 chore(ci): drop homebrew workflow
- fa8a55192 feat: update etcd to v3.6.12
- 41fcab476 feat: update kernel to 6.18.34
- 8ba00612b feat: update dependencies
- 6e2dec1ea refactor: update talosctl commands to stop using WithNodes
- f9ad63a35 feat: add custom logging convention linter
- 30dbce03f chore: make oci images reproducible
- 38244fd5b feat: add sbom builder
- 5177c50e2 refactor: deprecate loadedkernelmodule
- c2eef3645 fix: health request server-side
- d6eff8eff refactor: drop multi-nodes proxying for the dashboard
- 2e547a964 refactor: deprecate multi-node proxying
- ddcc519e1 fix: add --fail to image-signer curl download
- e5b0b1dde fix: normalize log fields
- d8e95c396 fix: drop installer from bundle
- 7aad9ec81 feat: update pkgs, tools, Go dependencies
- b50ee396f fix: fix trace fix to also lookup release branches
Changes from siderolabs/go-adv
2 commits
- siderolabs/go-adv@3818a65 feat: initial implementation
- siderolabs/go-adv@95e583c Initial commit
Changes from siderolabs/go-kmsg
Changes from siderolabs/go-kubeconfig
2 commits
- siderolabs/go-kubeconfig@d0b8f82 chore: rekres and bump deps
- siderolabs/go-kubeconfig@c356eeb fix: fix context conflict detection add New() constructor
Changes from siderolabs/go-kubernetes
4 commits
- siderolabs/go-kubernetes@cc8c2c9 fix: return the apply results in a consistent order
- siderolabs/go-kubernetes@131a2bd fix: handle cluster-scoped resources with a ns correctly
- siderolabs/go-kubernetes@38c182f fix: normalize the changeset to be keyed without apiVersion
- siderolabs/go-kubernetes@ca35008 feat: update k8s api to 0.36.0
Changes from siderolabs/go-smbios
Changes from siderolabs/go-talos-support
2 commits
- siderolabs/go-talos-support@59d47af feat: rewrite support bundle library around client provider
- siderolabs/go-talos-support@8dd4326 feat: support encryption of the support bundle using age
Changes from siderolabs/grpc-proxy
3 commits
- siderolabs/grpc-proxy@d670c42 chore: bump dependencies
- siderolabs/grpc-proxy@8614c71 chore: bump deps
- siderolabs/grpc-proxy@80677e0 fix: propagate the headers before the message
Changes from siderolabs/pkgs
90 commits
- siderolabs/pkgs@ea48e8b fix: patch Linux kernel for tunnel metadata buffer overflow
- siderolabs/pkgs@ff80d88 feat: add support for AMD XGBE driver
- siderolabs/pkgs@9f8ab22 feat: enable NF_TABLES_ARP option
- siderolabs/pkgs@bedfbeb feat: update Linux to 6.18.36
- siderolabs/pkgs@a9f2bb3 chore: bump containerd to 2.3.2
- siderolabs/pkgs@73e76f8 chore: upgrade runc to 1.5.0-rc.3
- siderolabs/pkgs@28db1ca chore: update nvidia driver lts to 580.167.08
- siderolabs/pkgs@5df1a44 chore: update zfs to 2.4.3
- siderolabs/pkgs@cd77c4f chore: update dependencies 2026-06-16
- siderolabs/pkgs@0f27ecc feat: bump runc
- siderolabs/pkgs@d213ff5 feat: bump OpenSSL to 3.6.3
- siderolabs/pkgs@cb713ae feat: bump kernel to 6.18.35
- siderolabs/pkgs@09cb04e fix: avoid page_table_check BUG on time namespace VVAR page
- siderolabs/pkgs@bfb88f6 feat: add nvidia-fs kernel module
- siderolabs/pkgs@f2850d1 feat: enable USB hiddev for apcupsd support
- siderolabs/pkgs@55aa64f feat: bump go to 1.26.4
- siderolabs/pkgs@f27dbe1 feat: bump kernel to 6.18.34
- siderolabs/pkgs@aa9fe00 feat: add DVB USB Modules
- siderolabs/pkgs@0870a4b feat: bump dependencies
- siderolabs/pkgs@f9134e5 fix: enable CONFIG_BCM2712_MIP as built-in in arm64 kernel config
- siderolabs/pkgs@285c6ae fix: set usermode static helper to machine
- siderolabs/pkgs@bd2a754 feat: pre-generate drbd patches using spatch out of tree
- siderolabs/pkgs@898844e feat: update Linux to 6.18.33
- siderolabs/pkgs@a8dfbf7 fix: disable kernel modprobe path
- siderolabs/pkgs@c542950 fix: pull in tools with zstd sbom
- siderolabs/pkgs@c0ec8f3 feat: enable PPP and INFINIBAND_BNXT_RE
- siderolabs/pkgs@c62c4e1 feat: update containerd to 2.3.1
- siderolabs/pkgs@270f9f8 chore: update deps
- siderolabs/pkgs@4f7feb4 feat: enable more options for CRI-U checkpoint/restore
- siderolabs/pkgs@87994f7 feat: move autoloadable stuff as modules
- siderolabs/pkgs@80c27f3 fix: drop legacy network protocols
- siderolabs/pkgs@fbb7360 feat: drop legacy iptables/ebtables support
- siderolabs/pkgs@eac5f86 feat: bump kernel 6.18.32
- siderolabs/pkgs@d616f6c feat: update Linux to 6.18.31
- siderolabs/pkgs@02bcfce fix: macb silent TX stall on BCM2712/RP1 (v2 patches from netdev)
- siderolabs/pkgs@12ca698 feat: update ZFS & NVIDIA LTS
- siderolabs/pkgs@9fff943 feat: update Linux to 6.18.30
- siderolabs/pkgs@c5a1685 feat: move HWMON as modules
- siderolabs/pkgs@b2a45fb feat: move CONFIG_INTEL_IOATDMA as a module
- siderolabs/pkgs@ea8d35f feat: move ACPI device drivers as modules
- siderolabs/pkgs@501ba58 feat: move HID quirks as modules
- siderolabs/pkgs@b35312c feat: move PS/2 mouse drivers as modules
- siderolabs/pkgs@3a5d9d7 feat: move IPMI driver to be a module
- siderolabs/pkgs@792a69a feat: disable AGP drivers
- siderolabs/pkgs@99990b4 feat: move Hyper-V drivers as modules
- siderolabs/pkgs@fb697d6 feat: move Xen frontend drivers as modules
- siderolabs/pkgs@1df1713 feat: move ATA / MMC controllers as modules
- siderolabs/pkgs@f7f9341 feat: move USB class drivers as modules
- siderolabs/pkgs@ba873e9 feat: move USB host controllers as modules
- siderolabs/pkgs@8f25baa feat: move virtio bus stuff as modules
- siderolabs/pkgs@d0c5480 feat: bump kernel to 6.18.29
- siderolabs/pkgs@dfb09f0 feat: bump kernel 6.18.28
- siderolabs/pkgs@c97bc24 feat: update Go to 1.26.3
- siderolabs/pkgs@dfe8926 feat: add btrfsprogs
- siderolabs/pkgs@06ff9dc feat: update Linux to 6.18.27
- siderolabs/pkgs@2265fc9 feat(kernel): backport two PCI bridge realloc fixes from v6.19
- siderolabs/pkgs@5a21d99 feat: bump dependencies
- siderolabs/pkgs@cb3f406 feat: update containerd to 2.3.0
- siderolabs/pkgs@e192574 feat: update Linux to 6.18.26
- siderolabs/pkgs@e5e6cb8 feat: update DRBD to 9.3.2
- siderolabs/pkgs@77538b1 feat: update NVIDIA drivers
- siderolabs/pkgs@adeaafc feat: preserve System.map on kernel builds
- siderolabs/pkgs@c77f985 fix: disable legacy framebuffer drivers
- siderolabs/pkgs@8f3ef77 fix: enable safesetid LSM
- siderolabs/pkgs@f82d3af fix: disable CONFIG_DEVPORT
- siderolabs/pkgs@b189a96 fix: disable crypto user API
- siderolabs/pkgs@9a718f6 docs: list net macb silent TX stall fixes in kernel/build/patches/README.md
- siderolabs/pkgs@ca3599f fix: macb silent TX stall on BCM2712/RP1 (RFC patches from netdev)
- siderolabs/pkgs@6a53a93 feat: bump kernel to 6.18.25
- siderolabs/pkgs@f567bce feat: disable more stuff in Kconfig
- siderolabs/pkgs@ffd9790 feat: bump kernel to 6.18.24
- siderolabs/pkgs@b7c709a feat: bump deps
- siderolabs/pkgs@e5e5b3c feat: update Linux to 6.18.23
- siderolabs/pkgs@1a4cd20 fix: renovate config
- siderolabs/pkgs@d0ed6ed feat: update dependencies
- siderolabs/pkgs@6ea49c7 fix: support disabling module signature verification
- siderolabs/pkgs@6520ec4 feat: update containerd to 2.2.3
- siderolabs/pkgs@37ce992 feat: enable CONFIG_UHID and CONFIG_INPUT_JOYDEV as modules
- siderolabs/pkgs@cddd934 feat: update backportable dependencies
- siderolabs/pkgs@32e4077 feat: update OpenSSL
- siderolabs/pkgs@2d241e7 feat: update Go to 1.26.2 and small deps updates
- siderolabs/pkgs@7f540ce feat: disable dynamic SCS
- siderolabs/pkgs@3bef043 feat: update runc to 1.4.2
- siderolabs/pkgs@c6e6f10 feat: update Linux to 6.18.21
- siderolabs/pkgs@a9e8afa fix: libarchive install prefix
- siderolabs/pkgs@e4d0113 feat: update for musl 1.2.6
- siderolabs/pkgs@9142603 feat: update NVIDIA production to 595.58.03
- siderolabs/pkgs@22fa669 feat: update Linux to 6.18.19
- siderolabs/pkgs@03680ae feat: update containerd patch verifier role
- siderolabs/pkgs@bdc239e feat: enable CHECKPOINT_RESTORE option
Changes from siderolabs/proto-codec
Changes from siderolabs/siderolink
Changes from siderolabs/tools
18 commits
- siderolabs/tools@0f1c859 chore: make rekres
- siderolabs/tools@5c0c9be chore: update dependencies 2026-06-16
- siderolabs/tools@b88d99c feat: bump OpenSSL to 3.6.3
- siderolabs/tools@42c59b9 feat: bump toolchain to bring in Go 1.26.4
- siderolabs/tools@206a4c0 feat: update dependencies, rework LLVM build
- siderolabs/tools@f9f37df fix: add proper name for zlib-ng sbom
- siderolabs/tools@aa45c41 fix: add SBOM for zstd library
- siderolabs/tools@808f34f feat: update Go to 1.26.3
- siderolabs/tools@5dfe83d feat: drop fakeroot and policycoreutils
- siderolabs/tools@618fd20 feat: add Python wheel package
- siderolabs/tools@df3c1b7 feat: bump dependencies
- siderolabs/tools@44ad18c feat: bump deps
- siderolabs/tools@f3d0dd9 fix: renovate configs
- siderolabs/tools@4ac4449 feat: update dependencies
- siderolabs/tools@027744f feat: bump OpenSSL to 3.6.2
- siderolabs/tools@7067f1f feat: update util-linux to 2.41.4
- siderolabs/tools@6cb3e56 feat: update Go to 1.26.2
- siderolabs/tools@9186c5f feat: update musl to 1.2.6
Dependency Changes
- codeberg.org/miekg/dns v0.6.79 new
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0 -> v1.21.1
- github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.4.0 -> v1.5.0
- github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0 -> v1.5.0
- github.com/aws/aws-sdk-go-v2 v1.41.9 new
- github.com/aws/aws-sdk-go-v2/config v1.32.12 -> v1.32.20
- github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 -> v1.18.25
- github.com/aws/aws-sdk-go-v2/service/acm v1.37.22 -> v1.39.2
- github.com/aws/aws-sdk-go-v2/service/kms v1.50.3 -> v1.53.0
- github.com/aws/smithy-go v1.24.2 -> v1.26.0
- github.com/beevik/nts v0.3.0 new
- github.com/containerd/containerd/api v1.10.0 -> v1.11.1
- github.com/containerd/containerd/v2 v2.2.2 -> v2.3.2
- github.com/containerd/platforms v1.0.0-rc.2 -> v1.0.0-rc.4
- github.com/containerd/typeurl/v2 v2.2.3 -> v2.3.0
- github.com/cosi-project/runtime v1.14.1 -> v1.16.1
- github.com/docker/cli v29.4.0 -> v29.5.2
- github.com/fatih/color v1.18.0 -> v1.19.0
- github.com/florianl/go-tc v0.4.7 -> v0.4.8
- github.com/fsnotify/fsnotify v1.9.0 -> v1.10.1
- github.com/gdamore/tcell/v2 v2.13.8 -> v2.13.10
- github.com/google/cadvisor v0.56.2 -> v0.57.0
- github.com/google/cel-go v0.28.0 -> v0.28.1
- github.com/google/go-containerregistry v0.21.5 -> v0.21.6
- github.com/gopacket/gopacket v1.5.0 -> v1.6.0
- github.com/hetznercloud/hcloud-go/v2 v2.36.0 -> v2.42.0
- github.com/insomniacslk/dhcp 5adc3eb26f91 -> 11b94ed970f2
- github.com/jsimonetti/rtnetlink/v2 310581b9c6ac -> ab8601692836
- github.com/klauspost/compress v1.18.5 -> v1.18.6
- github.com/mattn/go-isatty v0.0.20 -> v0.0.22
- github.com/mdlayher/arp 6706a2966875 -> 93566ba168e9
- github.com/mdlayher/ethtool v0.5.1 -> v0.6.1
- github.com/mdlayher/genetlink v1.3.2 -> v1.4.0
- github.com/mdlayher/netlink v1.9.0 -> v1.11.2
- github.com/moby/moby/api v1.54.1 -> v1.54.2
- github.com/moby/moby/client v0.4.0 -> v0.4.1
- github.com/pelletier/go-toml/v2 v2.2.4 -> v2.3.1
- github.com/planetscale/vtprotobuf ba97887b0a25 new
- github.com/siderolabs/go-adv v1.0.0 new
- github.com/siderolabs/go-blockdevice/v2 v2.0.28 -> v2.0.31
- github.com/siderolabs/go-kmsg v0.1.5 -> v0.1.6
- github.com/siderolabs/go-kubeconfig v0.1.1 -> v0.1.2
- github.com/siderolabs/go-kubernetes v0.2.36 -> v0.2.39
- github.com/siderolabs/go-smbios v0.3.3 -> v0.3.4
- github.com/siderolabs/go-talos-support v0.2.1 -> v0.3.0
- github.com/siderolabs/grpc-proxy v0.5.1 -> v0.5.2
- github.com/siderolabs/pkgs v1.13.0 -> v1.14.0-alpha.0-88-gea48e8b
- github.com/siderolabs/proto-codec v0.1.3 -> v0.1.4
- github.com/siderolabs/siderolink v0.3.15 -> v0.3.16
- github.com/siderolabs/talos/pkg/machinery v1.13.0 -> v1.14.0-alpha.2
- github.com/siderolabs/tools v1.13.0 -> v1.14.0-alpha.0-17-g0f1c859
- github.com/sigstore/cosign/v3 v3.0.5 -> v3.0.6
- github.com/sigstore/sigstore v1.10.5 -> v1.10.8
- github.com/theupdateframework/go-tuf/v2 v2.4.1 -> v2.4.2
- go.etcd.io/etcd/api/v3 v3.6.9 -> v3.7.0-rc.0
- go.etcd.io/etcd/client/pkg/v3 v3.6.9 -> v3.7.0-rc.0
- go.etcd.io/etcd/client/v3 v3.6.9 -> v3.7.0-rc.0
- go.etcd.io/etcd/etcdutl/v3 v3.6.9 -> v3.7.0-rc.0
- go.uber.org/zap v1.27.1 -> v1.28.0
- go.yaml.in/yaml/v4 v4.0.0-rc.4 -> v4.0.0-rc.5
- golang.org/x/net v0.53.0 -> v0.56.0
- golang.org/x/sync v0.20.0 -> v0.21.0
- golang.org/x/sys v0.43.0 -> v0.46.0
- golang.org/x/term v0.42.0 -> v0.44.0
- golang.org/x/text v0.36.0 -> v0.38.0
- google.golang.org/grpc v1.79.3 -> v1.81.1
- k8s.io/api v0.35.3 -> v0.36.2
- k8s.io/apiextensions-apiserver v0.35.3 -> v0.36.2
- k8s.io/apimachinery v0.35.3 -> v0.36.2
- k8s.io/apiserver v0.35.3 -> v0.36.2
- k8s.io/client-go v0.35.3 -> v0.36.2
- k8s.io/component-base v0.35.3 -> v0.36.2
- k8s.io/cri-api v0.35.3 -> v0.36.2
- k8s.io/kube-proxy v0.36.2 new
- k8s.io/kube-scheduler v0.35.3 -> v0.36.2
- k8s.io/kubectl v0.35.3 -> v0.36.2
- k8s.io/kubelet v0.35.3 -> v0.36.2
- k8s.io/pod-security-admission v0.35.3 -> v0.36.2
- kernel.org/pub/linux/libs/security/libcap/cap v1.2.77 -> v1.2.78
- sigs.k8s.io/yaml v1.6.0 new
Previous release can be found at v1.13.0
Images
ghcr.io/siderolabs/flannel:v0.28.5
registry.k8s.io/coredns/coredns:v1.14.2
registry.k8s.io/etcd:v3.7.0-rc.0-0
registry.k8s.io/pause:3.10.2
registry.k8s.io/kube-apiserver:v1.36.2
registry.k8s.io/kube-controller-manager:v1.36.2
registry.k8s.io/kube-scheduler:v1.36.2
registry.k8s.io/kube-proxy:v1.36.2
ghcr.io/siderolabs/kubelet:v1.36.2
registry.k8s.io/networking/kube-network-policies:v1.0.0
ghcr.io/siderolabs/installer-base:v1.14.0-alpha.2
ghcr.io/siderolabs/imager:v1.14.0-alpha.2
ghcr.io/siderolabs/talos:v1.14.0-alpha.2
ghcr.io/siderolabs/talosctl-all:v1.14.0-alpha.2
ghcr.io/siderolabs/overlays:v1.14.0-alpha.2
ghcr.io/siderolabs/extensions:v1.14.0-alpha.2