Skip to content

Commit cd23ece

Browse files
committed
Changes for v1.8.0
1 parent ff853ae commit cd23ece

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ resource "null_resource" "copy_image" {
104104
}
105105

106106
provisioner "file" {
107-
source = "${path.root}/output/metal-amd64.raw.xz"
108-
destination = "/root/talos/talos.raw.xz"
107+
source = "${path.root}/output/metal-amd64.raw.zst"
108+
destination = "/root/talos/talos.raw.zst"
109109
connection {
110110
type = "ssh"
111111
host = var.PROXMOX_IP

scripts/template.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BOOTDISK=scsi0
22
qm destroy 8000 || true
3-
xz -v -d talos/talos.raw.xz
3+
zstd --decompress talos/talos.raw.zst -o talos/talos.raw
44
sleep 3
55
qm create 8000 --memory 2048 --net0 virtio,bridge=vmbr0 --agent 1 --cores 2 --sockets 1 --cpu cputype=x86-64-v2
66
qm importdisk 8000 talos/talos.raw local-lvm

0 commit comments

Comments
 (0)