github siderolabs/talos v1.5.0-beta.0

latest releases: v1.8.0-alpha.2, pkg/machinery/v1.8.0-alpha.2, v1.7.6...
pre-release13 months ago

Talos 1.5.0-beta.0 (2023-08-02)

Welcome to the v1.5.0-beta.0 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.

Extension Services

Talos now supports setting environmentFile for an extension service container spec. Refer: https://www.talos.dev/v1.5/advanced/extension-services/#container
The extension waits for the file to be present before starting the service.

Predictable Network Interface Names

Starting with version Talos 1.5, network interfaces are renamed to predictable names
same way as systemd does that in other Linux distributions.

The naming schema enx78e7d1ea46da (based on MAC addresses) is enabled by default, the order of interface naming decisions is:

  • firmware/BIOS provided index numbers for on-board devices (example: eno1)
  • firmware/BIOS provided PCI Express hotplug slot index numbers (example: ens1)
  • physical/geographical location of the connector of the hardware (example: enp2s0)
  • interfaces's MAC address (example: enx78e7d1ea46da)

The predictable network interface names features can be disabled by specifying net.ifnames=0 in the kernel command line.
Talos automatically adds the net.ifnames=0 kernel argument when upgrading from Talos versions before 1.5.

This change doesn't affect "cloud" platforms, like AWS, as Talos automatically adds net.ifnames=0 to the kernel command line.

Network KMS Disk Encryption

Talos now supports new type of encryption keys which are sealed/unsealed with an external KMS server:

systemDiskEncryption:
  ephemeral:
    keys:
      - kms:
          endpoint: https://1.2.3.4:443
        slot: 0

gRPC API definitions and a simple reference implementation of the KMS server can be found in this
repository.

KubePrism - Kubernetes API Server In-Cluster Load Balancer

Talos now supports configuring the KubePrism - Kubernetes API Server in-cluster load balancer with machine config
features.kubePrism.port and features.kubePrism.enabled fields.

If enabled, KubePrism binds to localhost and runs on the same port on every machine in the cluster.
The default value for KubePrism endpoint is https://localhost:7445.

The KubePrism is used by the kubelet, kube-scheduler, kube-controller-manager
and kube-proxy by default and can be passed to the CNIs like Cilium and Calico.

The KubePrism provides access to the Kubernetes API endpoint even if the external loadbalancer
is not healthy, provided that the worker nodes can reach to the controlplane machine addresses directly.

Machine Config option .machine.install.bootloader

The .machine.install.bootloader option in the machine config is deprecated and will be removed in Talos 1.6.
This was a no-op for a long time. The bootloader is always installed.

XFS Quota

Talos 1.5+ enables XFS project quota support by default, also enabling by default
kubelet feature gate LocalStorageCapacityIsolationFSQuotaMonitoring to use xfs quotas
to monitor volume usage instead of du.

This feature is controlled by the .machine.features.diskQuotaSupport field in the machine config,
it is set to true for new clusters.

When upgrading from a previous version, the feature can be enabled by setting the field to true.
On the first mount of a volume, the quota information will be recalculated, which may take some time.

RDMA/RoCE support

Talos no longer loads by default rdma_rxe Linux driver, which is required for RoCE support.
If the driver is required, it can be enabled by specifying rdma_rxe in the .machine.kernel.modules field in the machine config.

SecureBoot

Talos now supports generating a custom iso that can be used with SecureBoot. Key generation and enrolling has to be done manually.

talosctl image Command

A new set of commands was introduced to manage container images in the CRI:

  • talosctl image list shows list of available images
  • talosctl image pull allows to pre-pull an image into the CRI

Both new commands accept --namespace flag with two possible values:

  • cri (default): images managed by the CRI (Kubernetes workloads)
  • system: images managed by Talos (etcd and kubelet)

talosctl images Command

The command talosctl images was renamed to talosctl image default.

The backward-compatible alias is kept in Talos 1.5, but it will be dropped in Talos 1.6.

TPM Disk Encryption

Talos now supports encrypting STATE/EPHEMERAL with keys bound to a TPM device. The TPM device must be TPM2.0 compatible.
This is ideally supported when booting with new Talos SecureBoot UKI ISOs/Metal images. This feature would still work if SecureBoot
is not enabled for UKI images, but not recommended since there is no way to verify the trust of the bootloader.

Example machine config:

systemDiskEncryption:
  ephemeral:
    keys:
      - slot: 0
        tpm: {}
  state:
    keys:
      - slot: 0
        tpm: {}

Component Updates

  • Linux: 6.1.42
  • containerd: 1.6.22
  • runc: 1.1.8
  • etcd: 3.5.9
  • Kubernetes: 1.28.0-rc.0
  • Flannel: 0.22.1

Talos is built with Go 1.20.7.

talosctl upgrade-k8s Image Pre-pulling

The command talosctl upgrade-k8s now by default pre-pulls images for Kubernetes controlplane components
and kubelet. This provides an early check for missing images, and minimizes downtime during Kubernetes
rolling component update.

Contributors

  • Andrey Smirnov
  • Noel Georgi
  • Dmitriy Matrenichev
  • Utku Ozdemir
  • Artem Chernyshev
  • Spencer Smith
  • Steve Francis
  • Christian Rolland
  • Andrei Kvapil
  • Nanfei Chen
  • Nico Berlee
  • Alex Corcoles
  • Alex Corcoles
  • Alex Lubbock
  • Artem Chernyshev
  • Budiman Jojo
  • Chris Hoffman
  • DJAlPee
  • Dennis Marttinen
  • Eirik Askheim
  • Florian Klink
  • Henk Kraal
  • Igor Rzegocki
  • James Callahan
  • LukasAuerbeck
  • Markus Reiter
  • Michael A. Davis
  • Michael Fornaro
  • Niklas Wik
  • Piotr Maksymiuk
  • Ricky Sadowski
  • Roee Klinger
  • Sacha Trémoureux
  • Scott Cariss
  • Serge Logvinov
  • Thomas Lemarchand
  • Thomas Perronin
  • Tim Jones
  • Victor Bajada
  • Walt Chen
  • bdronneau

Changes

220 commits

  • de763409b release(v1.5.0-beta.0): prepare release
  • 87fe8f1a2 feat: implement image generation profiles
  • e685208ce chore: update go 1.20.7
  • 10f958cf4 feat: network configuration improvements on the NoCloud platform
  • 5adeb5042 feat: update extension spec allowlist for opengl
  • abf383117 chore: remove cpu_manager_state on cpuManagerPolicy change
  • 018e7f587 chore: bump dependencies
  • 68e6b98f7 feat: add security state resource
  • 209c34801 chore: drop with-secureboot talosctl flag
  • ab14905d9 docs: note that Talos API requires TCP only load balancer, not HTTPS
  • 078c29c73 chore: re-enable cloud images step
  • a17272cdd chore: update hcloud API SDK to v2
  • 6d71bb8df refactor: replace google/gopacket with gopacket/gopacket
  • 846f37d84 refactor: drop dependency on vmware/govmomi
  • ca0b32c51 refactor: update AWS SDK and http-getter to v2 versions
  • dbb9f2bc7 chore: add dm_multipath module
  • b70b7ea57 chore: use new go-pcidb database
  • 9b533e27c feat: update Kubernetes to 1.28.0-rc.0
  • a3a2aa8ef fix: use fast wipe for upgrade
  • f863498ff fix: always override APIServer audit policy
  • 355681dda fix: terminate dashboard gracefully on & switch back to tty1
  • 544cb4fe7 refactor: accept partial machine configuration
  • 9b0bc3e93 chore: split kernel modules out of the tree
  • ffa48ac80 chore: workaround AWS AMI failures, disable Azure uploader
  • 4cd7623cf chore: add alx drivers
  • 663264c86 release(v1.5.0-alpha.3): prepare release
  • d2f64af86 chore: disable cloud-images, pull in new kernel and gre module
  • 8edce4906 docs: improve proxmox install guide
  • c783458be docs: typo dhcp -> dhcp
  • 003cbd161 docs: warn about secretboxEncryptionSecret in kubeadm migration guide
  • 786e86f5b refactor: rewrite the way Talos acquires the machine configuration
  • 5e13cafe5 feat: enforce kernel lockdown for UKI
  • 4d96d642f feat: update default Kubernetes version to 1.28.0-beta.0
  • 170a73e16 chore: support creating qemu guest socket
  • 59ac38a6b docs: add docs for installing azure ccm and csi
  • 6288cd970 release(v1.5.0-alpha.2): prepare release
  • 60c304126 chore: bump dependencies
  • 9ef4e5efc fix: log explicitly when kubelet has no nodeIP match
  • 6b39c6a4d fix: enable compression and bump gRPC max msg size
  • 2f2eca861 chore: basic support for shutdown/poweroff flags
  • b84277d7d docs: fix wrong capability name
  • 59d7d9344 chore: use machined for shutdown, poweroff
  • 2439bfb71 chore: explicitly add timestamps to machined logs
  • 14966e718 fix: skip over tpm2 1.2 devices
  • 6716e7bc0 docs: update cilium documentation about KubePrism usage
  • 166d75fe8 fix: tpm2 encrypt/decrypt flow
  • 130518de7 chore: change missing renames of KubePrism
  • 5f34f5b41 chore: rename api load balancer to KubePrism
  • c8b7095c0 refactor: use tpm2 library to calculate policy hash
  • 078aac92e chore: bump deps
  • 53873b844 refactor: move ukify into Talos code
  • d5f6fb9ff chore: add vendor info
  • 79365d9ba feat: tpm2 based disk encryption
  • 06369e819 fix: retry CRI pod removal, fix upgrade flow in the tests
  • d32dd3a82 chore: update Go to 1.20.6
  • 8017afb10 feat: implement CRI image management and pre-pull on K8s upgrade
  • 1c2f19b36 feat: update Kubernetes to 1.28.0-alpha.4
  • 94e9891c1 chore: bump sd-boot to v254-rc1
  • 936111ce0 fix: properly set up tls for KMS endpoint
  • cb226eec4 fix: rewrite encryption system information flow
  • 3206db528 feat: drop tpm simulator for ukify measure
  • bd4f89f63 fix: disable dashboard on Azure, GCP and Scaleway
  • bdb96189f refactor: make maintenance service controller-based
  • d23d04de2 feat: seed the kernel random pool from the TPM
  • c81ce8cfb feat: support controlplane resources configuration
  • 74de562b2 fix: mount hugepages with nosuid + nodev
  • ce63abb21 feat: add KMS assisted encryption key handler
  • dafbe9deb chore: optimize dockerfile instructions
  • a4289e870 chore: fix CLI docs generation stability
  • 2fec8388f chore: bump dependencies
  • c1b4262dd docs: split simple and more complex getting started guides
  • c9a9f9561 refactor: extract secure boot certificate generation
  • 6be5a13d5 feat: implement machine config documents for event and log streaming
  • e241be85b fix: properly handle YAML comment stripping for multi-doc
  • c02ada7d9 fix: capabilities including ALL should be uppercase
  • cbdf96d46 feat: support environment file for extensions
  • 35d6adcb9 fix: provide stashed META values before installation
  • 258f07449 fix: ukify cert generation
  • bf3febb7e fix: refine OVMF search paths
  • fbebc17f8 fix: disable LVM backups/archive
  • e5306ef26 chore: format and cleanup test scripts
  • bc371ecfd chore: add /sbin/shutdown
  • 0d313b973 feat: add reboot-mode flag to talosctl upgrade
  • 7ce87f20c fix: compare only basename of os.Args[0] in machined
  • 53389b1e7 feat: auto-enroll secure boot keys
  • d77f0bc7b docs: fix broken link to powershell module
  • e1b150a11 release(v1.5.0-alpha.1): prepare release
  • 8daf432b2 chore: bump deps
  • e3f3f5794 feat: implement revert for sd-boot
  • d8b0903d7 docs: vagrant setup document fix
  • fe0f46980 feat: implement secure boot from disk
  • 445f5ad54 feat: support API server load balancer
  • 19bc223de refactor: bootloader interface, labels
  • 665702ddd chore: fix cilium e2e tests
  • 71a548d18 chore: generic boootloader implementation
  • e9dbc9311 test: bump versions for upgrade tests
  • 0a99965ef refactor: replace uncordonNode with controllers
  • e858bca3a test: fix cilium integration tests
  • 455328d05 fix: allow time skew for generated kubeconfig
  • 3ae05648a fix: usage of custom kernels
  • 0797b0d16 chore: add a pipeline to test cloud-images step without a release
  • e5a36268b docs: include allowSchedulingOnControlPlanes on talosctl gen config output
  • c74d93728 chore: bump github.com/cosi-project/runtime
  • dbaf5c699 refactor: task labelControlPlane into controllers
  • 1865a0c29 chore: modify some usages that are not recommended
  • 3816318b9 chore: wrap config.Provider in atomic wrapper
  • d04cf1978 chore: clean up unnecessary self assignment
  • a34a94898 fix: copy missing modules.* files
  • f5e3272fc refactor: task 'updateBootLoader' as controller
  • e7be6ee7c refactor: make event log streaming fully reactive
  • aef2192a6 chore: use fixed module list
  • c719aa231 fix: allow http:// for discovery service URL
  • 39134d8d5 chore: fix cron pipeline
  • a61dcdbbd fix: don't load RDMA over Ethernet driver by default
  • aac441f61 chore: update Go to 1.20.5, bump dependencies
  • 1c0c7933d chore: cleanup partition code
  • 31b988281 docs: add some words about certifcates
  • e912c0dfc chore: use go-blockdevice for zeroing partitions
  • e6dde8ffc feat: add network chaos to qemu development environment
  • 47986cb79 chore: unify kexec phase
  • 3a865370f feat: qemu secureboot
  • 5dab45e86 refactor: allow kmsg log streaming to be reconfigured on the fly
  • 8a02ecd4c chore: add endpoints balancer controller
  • 423a31ac9 chore: deprectae bootloader installer option
  • cdfece7d6 chore: optimize image compression
  • bfc341937 chore: add default console args
  • 2749aeeda feat: add support for multi-doc strategic merge patching
  • 3f68485e4 feat: add uki iso generation
  • bab484a40 feat: use stable network interface names
  • 196dfb99b fix: do not probe kernel args in dashboard if not needed
  • 8c071b579 fix: skip DHCP RENEW if server IP in the lease is all zeroes
  • badbc51e6 refactor: rewrite code to include preliminary support for multi-doc
  • ecce29dee fix: upgrade-k8s use internal IP first, external IP fallback
  • 3c64a5ffb chore: optimize image generation time
  • 2292f36d9 chore: registry.k8s.io for coredns image
  • f2b258b37 docs: document talosctl version for upgrades
  • a0773f783 chore: add ukify Go script
  • b69e38d1f chore: bump dependencies
  • adce65103 docs: add piraeus/drbd to storage documentation
  • a982cabe7 docs: link support matrix in k8s update doc
  • 1fb29a56a fix: fail quickly if upgrade-k8s is used with multiple nodes
  • 51d931c47 chore: faster dev cycle
  • dc6764871 refactor: move around config interfaces, make RawV1Alpha1 typed
  • ea9a97dba fix: fall back to external IP when discovering nodes in upgrade-k8s
  • 0bb7e8a5c refactor: split config.Provider into Config & Container
  • 85d8a1619 chore: bump deps
  • 39b7a56f0 chore: use 8GiB instead of 10GiB for cloud images
  • ff11fd39c fix: race with udevd and mountUserDisks
  • c3fabb982 chore: update default image sizes to 10GB for all "cloud" images
  • 10155c390 feat: enable xfs project quota support, kubelet feature
  • eba818564 release(v1.5.0-alpha.0): prepare release
  • 383471c3e feat: update default Kubernetes to v1.27.2
  • 8f68d1abe chore: bump deps
  • e0c1585d3 feat: create azure community gallery image version on release
  • dd8336c9e fix: refresh kubelet self-issued serving certificates
  • bb02dd263 chore: drop deprecated stuff for Talos 1.5
  • 61cad8673 chore: bump deps
  • 01dfd3af7 feat: update etcd to v3.5.9
  • aa65fbb8a chore: update KUBECTL_URL to reflect the community bucket
  • cc3128d94 chore: bump kernel to 6.1.28
  • 97fffaf78 chore: use ctest.UpdateWithConflicts instead of plain UpdateWithConflicts
  • 3b36993b9 fix: rlimit nofile test
  • 45e6e27af chore: bump runtime
  • 4f720d465 fix: revert: set rlimit explicitly in wrapperd
  • a2565f674 fix: set rlimit explicitly in wrapperd
  • cdfc242b8 chore: re-enable Go buildid
  • e67f3f5c5 feat: linux 6.1.27, containerd 1.6.21, go 1.20.4
  • 55ae59a0a fix: properly skip/cleanup controlplane configs for workers
  • 64eade9bd chore: clean up unused constant
  • 62c6e9655 feat: introduce siderolink config resource & reconnect
  • 860002c73 fix: don't reload control plane pods on cert SANs changes
  • d43c61e80 fix: enforce nolock option for all NFS mounts by default
  • 339986db9 fix: inhibit timer to follow kubelet timer
  • cbf6dc100 fix: set timeout for unmount calls
  • b58f913d5 fix: set the static pod priority as values
  • f8a7a5b6b docs: add information about KubeSpan ports and topology
  • 2bad74d64 docs: add how to on scaling down
  • 7442ff8b0 chore: fix typos inteface -> interface (docs and tests)
  • d4e94f7a1 fix: add back required TARGETARCH for installer
  • e6fffda01 chore: linux 6.1.26, runc 1.1.7
  • 344746ae2 fix: bump max inhibit delay to 20 min
  • d9bdea2b5 chore: fork docs and compatibility modules for Talos 1.5
  • 3d99610fc docs: document building, verifying image and process caps
  • 014008ea2 fix: udevd rules trigger
  • 9b36bb613 feat: update Linux to 6.1.25, fix virtio on arm64
  • 08ec66c55 feat: clean up (garbage collect) system images which are not referenced
  • b097efcde fix: display correct number of machines on dashboard
  • cad43f0ad chore: remove k8s master label
  • e296a566e fix: support kernel userspace module loading
  • 103f0ffdd feat: add startup probes to controller-manager and scheduler
  • 5a1ae8aae chore: bump dependences
  • ec8c8dbaf chore: fix container image reproducibility
  • f661d8487 fix: allow talosctl cp to handle special files in /proc
  • 2d824b563 fix: do not show control plane status for workers on dashboard
  • e5491ddad docs: update documentation for nocloud
  • 7a004a6f7 fix: parse errors correctly
  • 374ef5385 test: submit verbose flag to e2e tests
  • e1d38b6fe feat: show template URL in dashboard config URL tab
  • 45d7f0ce9 docs: fix the latest url
  • 96efbf147 docs: activate 1.4.0 docs by default
  • 8c1f515b1 feat: update Linux to 6.1.24
  • 8689bef5f docs: update documentation for Talos 1.4
  • a781dfb8e feat: update Kubernetes to 1.27.1
  • a737dd83a chore: typo in compatibility.ParseKubernetesVersion
  • f14928b0a fix: fix dashboard crash when a non-existent node is specified
  • 3e406d9b0 feat: update etcd to v3.5.8
  • bd1cff3e8 chore: remove Go buildid
  • e31f7f50b feat: update Kubernetes to 1.27.0
  • aa3640d74 docs: update storage.md
  • 07bb61e60 chore: module-sig-verify cleanup
  • 5e9d836c3 chore: add kernel module signtaure verification
  • 3cd1c6bb0 fix: send 'STOP' event on phase end
  • 5176d27dc feat: update Kubernetes to 1.27.0-rc.1
  • 2c55550a6 fix: quote ISO kernel args for GRUB
  • 319d76e38 fix: respect BROWSER=echo in client auth interceptor
  • 4e4ace839 chore: update Go to 1.20.3
  • 170f73899 fix: correctly parse static pod phase
  • c3a595d5b fix: improve action tracking post checks
  • eb01edbc8 fix: rework DHCP flow
  • e095150a6 test: bump CAPI components versions

Changes since v1.5.0-alpha.3

25 commits

  • de763409b release(v1.5.0-beta.0): prepare release
  • 87fe8f1a2 feat: implement image generation profiles
  • e685208ce chore: update go 1.20.7
  • 10f958cf4 feat: network configuration improvements on the NoCloud platform
  • 5adeb5042 feat: update extension spec allowlist for opengl
  • abf383117 chore: remove cpu_manager_state on cpuManagerPolicy change
  • 018e7f587 chore: bump dependencies
  • 68e6b98f7 feat: add security state resource
  • 209c34801 chore: drop with-secureboot talosctl flag
  • ab14905d9 docs: note that Talos API requires TCP only load balancer, not HTTPS
  • 078c29c73 chore: re-enable cloud images step
  • a17272cdd chore: update hcloud API SDK to v2
  • 6d71bb8df refactor: replace google/gopacket with gopacket/gopacket
  • 846f37d84 refactor: drop dependency on vmware/govmomi
  • ca0b32c51 refactor: update AWS SDK and http-getter to v2 versions
  • dbb9f2bc7 chore: add dm_multipath module
  • b70b7ea57 chore: use new go-pcidb database
  • 9b533e27c feat: update Kubernetes to 1.28.0-rc.0
  • a3a2aa8ef fix: use fast wipe for upgrade
  • f863498ff fix: always override APIServer audit policy
  • 355681dda fix: terminate dashboard gracefully on & switch back to tty1
  • 544cb4fe7 refactor: accept partial machine configuration
  • 9b0bc3e93 chore: split kernel modules out of the tree
  • ffa48ac80 chore: workaround AWS AMI failures, disable Azure uploader
  • 4cd7623cf chore: add alx drivers

Changes from siderolabs/crypto

2 commits

Changes from siderolabs/discovery-api

1 commit

Changes from siderolabs/discovery-client

1 commit

Changes from siderolabs/extras

5 commits

Changes from siderolabs/gen

3 commits

Changes from siderolabs/go-blockdevice

4 commits

Changes from siderolabs/go-debug

1 commit

Changes from siderolabs/go-kubernetes

2 commits

Changes from siderolabs/go-loadbalancer

6 commits

Changes from siderolabs/go-pcidb

1 commit

Changes from siderolabs/kms-client

3 commits

Changes from siderolabs/pkgs

47 commits

Changes from siderolabs/tools

24 commits

Dependency Changes

  • github.com/BurntSushi/toml v1.2.1 -> v1.3.2
  • github.com/aws/aws-sdk-go-v2/config v1.18.32 new
  • github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.7 new
  • github.com/aws/smithy-go v1.14.0 new
  • github.com/beevik/ntp v0.3.0 -> v1.2.0
  • github.com/benbjohnson/clock v1.1.0 -> v1.3.5
  • github.com/cenkalti/backoff/v4 v4.2.0 -> v4.2.1
  • github.com/containerd/containerd v1.6.19 -> v1.6.22
  • github.com/containerd/typeurl/v2 v2.1.1 new
  • github.com/containernetworking/plugins v1.2.0 -> v1.3.0
  • github.com/coreos/go-iptables v0.6.0 -> v0.7.0
  • github.com/cosi-project/runtime v0.3.0 -> v0.3.1
  • github.com/docker/distribution v2.8.1 -> v2.8.2
  • github.com/docker/docker v23.0.2 -> v24.0.5
  • github.com/ecks/uefi caef65d070eb new
  • github.com/emicklei/dot v1.4.2 -> v1.6.0
  • github.com/foxboron/go-uefi 32187aa193d0 new
  • github.com/google/go-containerregistry v0.15.2 new
  • github.com/google/go-tpm v0.9.0 new
  • github.com/gopacket/gopacket v1.1.1 new
  • github.com/hashicorp/go-envparse v0.1.0 new
  • github.com/hashicorp/go-getter/v2 v2.2.1 new
  • github.com/hetznercloud/hcloud-go/v2 v2.0.0 new
  • github.com/insomniacslk/dhcp 74ae03f2425e -> 0f9eb93a696c
  • github.com/jsimonetti/rtnetlink v1.3.1 -> v1.3.4
  • github.com/mattn/go-isatty v0.0.18 -> v0.0.19
  • github.com/mdlayher/ethtool ba3b4bc2e02c -> v0.1.0
  • github.com/mdlayher/genetlink v1.3.1 -> v1.3.2
  • github.com/mdlayher/netlink v1.7.1 -> v1.7.2
  • github.com/mdlayher/netx c711c2f8512f -> 7e21880baee8
  • github.com/nberlee/go-netstat v0.1.1 -> v0.1.2
  • github.com/opencontainers/go-digest v1.0.0 new
  • github.com/opencontainers/image-spec v1.1.0-rc2 -> v1.1.0-rc4
  • github.com/packethost/packngo v0.29.0 -> v0.30.0
  • github.com/prometheus/procfs v0.9.0 -> v0.11.1
  • github.com/rivo/tview 281d14d896d7 -> 6cc0565babaf
  • github.com/rs/xid v1.4.0 -> v1.5.0
  • github.com/scaleway/scaleway-sdk-go v1.0.0-beta.15 -> v1.0.0-beta.20
  • github.com/siderolabs/crypto v0.4.0 -> v0.4.1
  • github.com/siderolabs/discovery-api v0.1.2 -> v0.1.3
  • github.com/siderolabs/discovery-client v0.1.4 -> v0.1.5
  • github.com/siderolabs/extras v1.4.0-1-g9b07505 -> v1.5.0
  • github.com/siderolabs/gen v0.4.3 -> v0.4.5
  • github.com/siderolabs/go-blockdevice v0.4.4 -> v0.4.6
  • github.com/siderolabs/go-debug v0.2.2 -> v0.2.3
  • github.com/siderolabs/go-kubernetes v0.2.0 -> v0.2.2
  • github.com/siderolabs/go-loadbalancer v0.2.1 -> v0.3.2
  • github.com/siderolabs/go-pcidb v0.1.0 -> v0.2.0
  • github.com/siderolabs/kms-client v0.1.0 new
  • github.com/siderolabs/pkgs v1.4.1-5-ga333a84 -> v1.5.0
  • github.com/siderolabs/talos/pkg/machinery v1.4.0 -> v1.5.0-beta.0
  • github.com/siderolabs/tools v1.4.0-1-g955aabc -> v1.5.0
  • github.com/spf13/cobra v1.6.1 -> v1.7.0
  • github.com/stretchr/testify v1.8.2 -> v1.8.4
  • github.com/vmware-tanzu/sonobuoy v0.56.16 -> v0.56.17
  • go.etcd.io/etcd/api/v3 v3.5.8 -> v3.5.9
  • go.etcd.io/etcd/client/pkg/v3 v3.5.8 -> v3.5.9
  • go.etcd.io/etcd/client/v3 v3.5.8 -> v3.5.9
  • go.etcd.io/etcd/etcdutl/v3 v3.5.8 -> v3.5.9
  • go.uber.org/zap v1.24.0 -> v1.25.0
  • go4.org/netipx f1b76eb4bb35 -> ec4c8b891b28
  • golang.org/x/net v0.8.0 -> v0.13.0
  • golang.org/x/sync v0.1.0 -> v0.3.0
  • golang.org/x/sys v0.6.0 -> v0.10.0
  • golang.org/x/term v0.6.0 -> v0.10.0
  • golang.org/x/text v0.11.0 new
  • golang.zx2c4.com/wireguard/wgctrl 9c5414ab4bde -> 925a1e7659e6
  • google.golang.org/grpc v1.54.0 -> v1.57.0
  • google.golang.org/protobuf v1.30.0 -> v1.31.0
  • k8s.io/api v0.27.1 -> v0.28.0-rc.0
  • k8s.io/apimachinery v0.27.1 -> v0.28.0-rc.0
  • k8s.io/apiserver v0.27.1 -> v0.28.0-rc.0
  • k8s.io/client-go v0.27.1 -> v0.28.0-rc.0
  • k8s.io/component-base v0.27.1 -> v0.28.0-rc.0
  • k8s.io/cri-api v0.27.1 -> v0.28.0-rc.0
  • k8s.io/klog/v2 v2.90.1 -> v2.100.1
  • k8s.io/kubectl v0.27.1 -> v0.28.0-rc.0
  • k8s.io/kubelet v0.27.1 -> v0.28.0-rc.0
  • kernel.org/pub/linux/libs/security/libcap/cap v1.2.68 -> v1.2.69

Previous release can be found at v1.4.0

Images

ghcr.io/siderolabs/flannel:v0.22.1
ghcr.io/siderolabs/install-cni:v1.5.0
registry.k8s.io/coredns/coredns:v1.10.1
gcr.io/etcd-development/etcd:v3.5.9
registry.k8s.io/kube-apiserver:v1.28.0-rc.0
registry.k8s.io/kube-controller-manager:v1.28.0-rc.0
registry.k8s.io/kube-scheduler:v1.28.0-rc.0
registry.k8s.io/kube-proxy:v1.28.0-rc.0
ghcr.io/siderolabs/kubelet:v1.28.0-rc.0
ghcr.io/siderolabs/installer:v1.5.0-beta.0
registry.k8s.io/pause:3.6

Don't miss a new talos release

NewReleases is sending notifications on new releases.