Skip to content

Commit

Permalink
upgrade to talos 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Nov 15, 2024
1 parent 183d24b commit b6cfb15
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.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
Expand Down
8 changes: 4 additions & 4 deletions do
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion talos.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2"
default = "1.8.3"
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.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."
Expand Down

0 comments on commit b6cfb15

Please sign in to comment.