From a72646b7eb2479b0e77a4e65a574911b34c0bfab Mon Sep 17 00:00:00 2001 From: Rui Lopes Date: Mon, 14 Jul 2025 06:01:01 +0000 Subject: [PATCH] upgrade to talos 1.10.5 --- README.md | 2 +- do | 8 ++++---- variables.tf | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8e6f33c..32c99a6 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Install talosctl: ```bash # see https://github.com/siderolabs/talos/releases # renovate: datasource=github-releases depName=siderolabs/talos -talos_version='1.10.4' +talos_version='1.10.5' wget https://github.com/siderolabs/talos/releases/download/v$talos_version/talosctl-linux-amd64 sudo install talosctl-linux-amd64 /usr/local/bin/talosctl rm talosctl-linux-amd64 diff --git a/do b/do index 5af95fe..ffa9566 100755 --- a/do +++ b/do @@ -11,7 +11,7 @@ talos_image_builder="$(perl -e 'print ((`uname -r` =~ /^(\d+\.\d+)/ && $1 >= 6.1 # see https://github.com/siderolabs/talos/releases # renovate: datasource=github-releases depName=siderolabs/talos -talos_version="1.10.4" +talos_version="1.10.5" # see https://github.com/siderolabs/extensions/pkgs/container/qemu-guest-agent # see https://github.com/siderolabs/extensions/tree/main/guest-agents/qemu-guest-agent @@ -20,11 +20,11 @@ talos_qemu_guest_agent_extension_tag="10.0.2@sha256:304621c2f72cf931a611de1de135 # see https://github.com/siderolabs/extensions/pkgs/container/drbd # see https://github.com/siderolabs/extensions/tree/main/storage/drbd # see https://github.com/LINBIT/drbd -talos_drbd_extension_tag="9.2.13-v1.10.4@sha256:8e6a8e3cb225cb48555117b1dfb38143cef4fe49da1df1c7d2feb813360a7646" +talos_drbd_extension_tag="9.2.14-v1.10.5@sha256:cb8b8d515b13d0b4644dd8df9f1818db834a97e4846a8255567cd06a6ee11293" # see https://github.com/siderolabs/extensions/pkgs/container/spin # see https://github.com/siderolabs/extensions/tree/main/container-runtime/spin -talos_spin_extension_tag="v0.19.0@sha256:581cd61637716b01d49428512f604b9b375206a871bff9bca6868c9753288cb2" +talos_spin_extension_tag="v0.19.0@sha256:c88e8b1a6de4acd8d98f6aacc716c8e9aef3f7962d04893b49afc77d013b8ba2" # see https://github.com/piraeusdatastore/piraeus-operator/releases # renovate: datasource=github-releases depName=piraeusdatastore/piraeus-operator @@ -69,7 +69,7 @@ function update-talos-extensions { function build_talos_image__imager { # see https://www.talos.dev/v1.10/talos-guides/install/boot-assets/ # see https://www.talos.dev/v1.10/advanced/metal-network-configuration/ - # see Profile type at https://github.com/siderolabs/talos/blob/v1.10.4/pkg/imager/profile/profile.go#L23-L46 + # see Profile type at https://github.com/siderolabs/talos/blob/v1.10.5/pkg/imager/profile/profile.go#L23-L46 local talos_version_tag="v$talos_version" rm -rf tmp/talos mkdir -p tmp/talos diff --git a/variables.tf b/variables.tf index 600f862..ae7ad36 100644 --- a/variables.tf +++ b/variables.tf @@ -3,7 +3,7 @@ variable "talos_version" { type = string # renovate: datasource=github-releases depName=siderolabs/talos - default = "1.10.4" + default = "1.10.5" validation { condition = can(regex("^\\d+(\\.\\d+)+", var.talos_version)) error_message = "Must be a version number." @@ -102,7 +102,7 @@ variable "worker_count" { variable "talos_libvirt_base_volume_name" { type = string - default = "talos-1.10.4.qcow2" + default = "talos-1.10.5.qcow2" validation { condition = can(regex(".+\\.qcow2+$", var.talos_libvirt_base_volume_name)) error_message = "Must be a name with a .qcow2 extension."