upgrade to talos 1.7.1

This commit is contained in:
Rui Lopes
2024-05-03 19:35:24 +01:00
parent 60e71efd5e
commit cd540a155d
3 changed files with 5 additions and 5 deletions

View File

@@ -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

4
do
View File

@@ -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

View File

@@ -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."