diff --git a/README.md b/README.md index 1c83842..f605cc0 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Install talosctl: ```bash # see https://github.com/siderolabs/talos/releases # renovate: datasource=github-releases depName=siderolabs/talos -talos_version='1.7.0' +talos_version='1.7.1' 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 a4baf58..19c94e9 100755 --- a/do +++ b/do @@ -3,7 +3,7 @@ set -euo pipefail # see https://github.com/siderolabs/talos/releases # renovate: datasource=github-releases depName=siderolabs/talos -talos_version="1.7.0" +talos_version="1.7.1" # see https://github.com/siderolabs/extensions/pkgs/container/qemu-guest-agent # see https://github.com/siderolabs/extensions/tree/main/guest-agents/qemu-guest-agent @@ -36,7 +36,7 @@ function step { function build_talos_image { # see https://www.talos.dev/v1.7/talos-guides/install/boot-assets/ # see https://www.talos.dev/v1.7/advanced/metal-network-configuration/ - # see Profile type at https://github.com/siderolabs/talos/blob/v1.7.0/pkg/imager/profile/profile.go#L22-L45 + # see Profile type at https://github.com/siderolabs/talos/blob/v1.7.1/pkg/imager/profile/profile.go#L22-L45 local talos_version_tag="v$talos_version" rm -rf tmp/talos mkdir -p tmp/talos diff --git a/variables.tf b/variables.tf index 7bc587e..ee723f2 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.7.0" + default = "1.7.1" validation { condition = can(regex("^\\d+(\\.\\d+)+", var.talos_version)) error_message = "Must be a version number." @@ -96,7 +96,7 @@ variable "worker_count" { variable "talos_libvirt_base_volume_name" { type = string - default = "talos-1.7.0.qcow2" + default = "talos-1.7.1.qcow2" validation { condition = can(regex(".+\\.qcow2+$", var.talos_libvirt_base_volume_name)) error_message = "Must be a name with a .qcow2 extension."