diff --git a/README.md b/README.md index 824b06b..d4ba3d1 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.8.2' +talos_version='1.8.3' 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 909db8e..b7a2434 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.8.2" +talos_version="1.8.3" # 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,7 +20,7 @@ talos_qemu_guest_agent_extension_tag="9.1.0@sha256:cd8154036a0711f6f0a2ec9d6ce85 # 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.11-v1.8.2@sha256:844500c600211840b2e67d87102344fea670fdcb5367832019be496aa970cd2a" +talos_drbd_extension_tag="9.2.11-v1.8.3@sha256:4fab47f31d7e7d1873cc17fc46225805a424234eac73e5ff61b22419b9a496fc" # see https://github.com/siderolabs/extensions/pkgs/container/spin # see https://github.com/siderolabs/extensions/tree/main/container-runtime/spin @@ -69,7 +69,7 @@ function update-talos-extensions { function build_talos_image__imager { # see https://www.talos.dev/v1.8/talos-guides/install/boot-assets/ # see https://www.talos.dev/v1.8/advanced/metal-network-configuration/ - # see Profile type at https://github.com/siderolabs/talos/blob/v1.8.2/pkg/imager/profile/profile.go#L24-L47 + # see Profile type at https://github.com/siderolabs/talos/blob/v1.8.3/pkg/imager/profile/profile.go#L24-L47 local talos_version_tag="v$talos_version" rm -rf tmp/talos mkdir -p tmp/talos @@ -110,7 +110,7 @@ EOF } function build_talos_image__image_factory { - # see https://www.talos.dev/v1.7/learn-more/image-factory/ + # see https://www.talos.dev/v1.8/learn-more/image-factory/ # see https://github.com/siderolabs/image-factory?tab=readme-ov-file#http-frontend-api local talos_version_tag="v$talos_version" rm -rf tmp/talos diff --git a/talos.tf b/talos.tf index 5f430d8..a9b3a07 100644 --- a/talos.tf +++ b/talos.tf @@ -26,7 +26,7 @@ locals { enabled = true port = 7445 } - # see https://www.talos.dev/v1.7/talos-guides/network/host-dns/ + # see https://www.talos.dev/v1.8/talos-guides/network/host-dns/ hostDNS = { enabled = true forwardKubeDNSToHost = true diff --git a/variables.tf b/variables.tf index 77d02f5..d94024e 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.8.2" + default = "1.8.3" 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.8.2.qcow2" + default = "talos-1.8.3.qcow2" validation { condition = can(regex(".+\\.qcow2+$", var.talos_libvirt_base_volume_name)) error_message = "Must be a name with a .qcow2 extension."