Open tomaszkiewicz opened 9 months ago
@tomaszkiewicz could you please share the configuration of the virtio0
hard disk the provider created after step 2? I.e.
After creating the template (step 1):
Step 2/3 fails:
Then after step 4 (recreation as VM) we have a VM with the following:
After manual conversion to template (step 5):
Then new VM created from template:
Maybe that link will help understanding what's going on when converting to template:
It seems that when converting, this ZFS plugin method is called:
249 sub create_base {
250 my ($class, $storeid, $scfg, $volname) = @_;
251
252 my $snap = '__base__';
253
254 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
255 $class->parse_volname($volname);
256
257 die "create_base not possible with base image\n" if $isBase;
258
259 my $newname = $name;
260 $newname =~ s/^vm-/base-/;
261
262 my $newvolname = $basename ? "$basename/$newname" : "$newname";
263
264 $class->zfs_delete_lu($scfg, $name);
265 $class->zfs_request($scfg, undef, 'rename', "$scfg->{pool}/$name", "$scfg->{pool}/$newname");
266
267 my $guid = $class->zfs_create_lu($scfg, $newname);
268 $class->zfs_add_lun_mapping_entry($scfg, $newname, $guid);
269
270 my $running = undef; #fixme : is create_base always offline ?
271
272 $class->volume_snapshot($scfg, $storeid, $newname, $snap, $running);
273
274 return $newvolname;
275 }
FWIW, I have the same problem using NFS storage rather than local-zfs. I was thinking it has to do with the path name for the disk image in the template getting created with the "vm-..." prefix rather than the "base-..." prefix you get when you manually convert a VM to a template. I tried using the experimental "path_in_datastore" (https://registry.terraform.io/providers/bpg/proxmox/latest/docs/resources/virtual_environment_vm#path_in_datastore) to override the default file name, but that did not work for me.
This time with proper quotes...
To test the hypothesis about the file name prefix, I used the proxmox node shell and renamed the disk image file and updated the config for the template in /etc/pve/virtual-guest/nodes/<pve3>/qemu-server/.conf
. Simply changing the disk image filename from vm-<id>-disk-0.qcow2
to base-<id>-disk-0.qcow2
allowed the previously broken template to be cloned.
Some of the comments here gave me enough info to get this workaround approach to fully automate template and linked clone provisioning working, also for flatcar like the original comment:
resource "proxmox_virtual_environment_file" "ignition_file" {
node_name = var.node
content_type = "snippets"
datastore_id = "local"
source_raw {
data = var.config
file_name = "${var.vm_id}-ignition-file.ign"
}
}
resource "proxmox_virtual_environment_vm" "flatcar_template" {
node_name = var.node
vm_id = var.vm_id
name = var.name
on_boot = false
started = false
template = false
kvm_arguments = "-fw_cfg name=opt/org.flatcar-linux/config,file=/var/lib/vz/snippets/${proxmox_virtual_environment_file.ignition_file.file_name}"
disk {
datastore_id = "local-zfs"
file_format = "raw" # seems to cause issues if not explicitly set
file_id = var.cloud_image_file_id
interface = "virtio0"
}
network_device {
bridge = "vmbr0"
}
serial_device {}
connection {
type = "ssh"
user = var.username
password = var.password
host = var.host
}
# Workaround to resolve disk issues caused by creating template vs creating VM then converting to template
provisioner "remote-exec" {
inline = ["qm template ${self.vm_id}"]
}
lifecycle {
ignore_changes = [
template # Ignore template flag being changed by provisioner on re-run
]
}
}
Marking this issue as stale due to inactivity in the past 180 days. This helps us focus on the active issues. If this issue is reproducible with the latest version of the provider, please comment. If this issue receives no comments in the next 30 days it will automatically be closed. If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thank you!
Describe the bug The provider creates a template by sending the request to API to create vm with "template" option set to true. That approach doesn't work when we deal with qcow2 based images and ZFS datastore for VMs because it skips some Proxmox conversion logic that enables linked clone from template.
To Reproduce
template = true
totemplate = false
in above code and apply TF, it'll replace the template with VMqm template 801
from CLIExpected behavior Provider should create a VM and then issue "convert to template" operation on Proxmox side as some additional logic (I'm not sure what exactly) happens during that process.
Additional context