Build Talos snapshots on Hetzner with Packer for amd64 and arm64

Prerequirements Hetzner account Packer CLI amd64 and arm64 Hetzner just launched its arm64-based cloud servers. If we want to beable to create a Talos cluster based on arm64 we need to create two separate snapshots. Packer configuration hcloud_talosimage.pkr.hcl Replace the LATEST_TALOS_VERSION with the latest release found here packer { required_plugins { hcloud = { version = ">= 1.0.0" source = "github.com/hashicorp/hcloud" } } } variable "talos_version" { type = string default = "LATEST_TALOS_VERSION" } locals { amd64_image = "https://github....

May 5, 2023 · 2 min · Jeroen