Proxmox testing with community #1573
Replies: 3 comments 17 replies
-
I could succesfully create and run a Flatcar VM with Ignition on Proxmox VE latest (8.2.2): export VM_ID=124
qm create $VM_ID --cores 2 --memory 4096 --net0 "virtio,bridge=vmbr0" --ipconfig0 "ip=dhcp"
qm disk import $VM_ID flatcar_production_proxmoxve_image.bin local-lvm
# tell the vm to boot from the imported image
qm set $VM_ID --scsi0 local-lvm:vm-$VM_ID-disk-0
qm set $VM_ID --boot order=scsi0
qm set $VM_ID --ide2 local-lvm:cloudinit
qm set $VM_ID --cicustom "user=local:snippets/userdata"
# userdata is from https://github.com/flatcar/flatcar-website/pull/337/files#diff-47f96e69913e3bf870ccb62bcfad55dda8e04436a2bb2090a1fb7a17f1e57b77R71
qm start $VM_ID Notes: the hostname is not set in this scenario. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I used this userdata:
But the boot is failing for me. and i'm pretty confused, if I use an ignition in the userdata, it tells the user-data doesn't have |
Beta Was this translation helpful? Give feedback.
-
A Proxmox image is available here for testing purposes here: http://bincache.flatcar-linux.net/images/amd64/9999.9.100+kai-proxmox-support/flatcar_production_proxmoxve_image.img.bz2.
One can try it following this documentation: https://github.com/flatcar/flatcar-website/pull/337/files or Terraform approach. You can directly suggest your feedback to the documentation or discuss about it in this discussion:
Beta Was this translation helpful? Give feedback.
All reactions