Skip to content

Commit

Permalink
upgrade to talos 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Oct 12, 2024
1 parent 43d0a5e commit 79188fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0'
talos_version='1.8.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
Expand Down
6 changes: 3 additions & 3 deletions do
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ talos_image_builder="image_factory"

# see https://github.com/siderolabs/talos/releases
# renovate: datasource=github-releases depName=siderolabs/talos
talos_version="1.8.0"
talos_version="1.8.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
Expand All @@ -17,7 +17,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.0@sha256:e58f07bdc0184a075f1b7e1864ca2c6487b96c5a848d24440162fcff3eb45d96"
talos_drbd_extension_tag="9.2.11-v1.8.1@sha256:f4186835e9320d4657ee791d4e17cda73f5e3422837f88a5689d44671550cf1f"

# see https://github.com/siderolabs/extensions/pkgs/container/spin
# see https://github.com/siderolabs/extensions/tree/main/container-runtime/spin
Expand Down Expand Up @@ -66,7 +66,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.0/pkg/imager/profile/profile.go#L24-L47
# see Profile type at https://github.com/siderolabs/talos/blob/v1.8.1/pkg/imager/profile/profile.go#L24-L47
local talos_version_tag="v$talos_version"
rm -rf tmp/talos
mkdir -p tmp/talos
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
variable "talos_version" {
type = string
# renovate: datasource=github-releases depName=siderolabs/talos
default = "1.8.0"
default = "1.8.1"
validation {
condition = can(regex("^\\d+(\\.\\d+)+", var.talos_version))
error_message = "Must be a version number."
Expand Down Expand Up @@ -102,7 +102,7 @@ variable "worker_count" {

variable "talos_libvirt_base_volume_name" {
type = string
default = "talos-1.8.0.qcow2"
default = "talos-1.8.1.qcow2"
validation {
condition = can(regex(".+\\.qcow2+$", var.talos_libvirt_base_volume_name))
error_message = "Must be a name with a .qcow2 extension."
Expand Down

0 comments on commit 79188fe

Please sign in to comment.