I'm trying to build a Ubuntu 20.04 server with autoinstall. But it looks like it isn't picking up the setup file.
I'm using packer, however I also tried this manually and got the same result:
Setup:
/home/user/build/http/user-data:
#cloud-config
autoinstall:
version: 1
identity:
hostname: ubuntu-vm
password: "$6$exDY1mhS4KUYCE/2$zmn9ToZwTKLhCw.b4/b.ZRTIZM30JZ4QrOQ2aOXJ8yk96xpcCof0kxKwuX1kqLG/ygbJ1f8wxED22bTL4F46P0"
username: ubuntu
locale: en_US.UTF-8
keyboard:
layout: us
/home/user/build/http/meta-data: (empty)
grub command line:
set gfxpayload=keep<enter>
linux /casper/vmlinuz autoinstall ds=nocloud-net;s=http://192.168.10.10:3003/ ---
initrd /casper/initrd
boot
I can browse to http://192.168.10.10:3003/ and see user-data and meta-data files.
I end up on the "choose your language screen" forever.
I do have a console capture video which I can upload somewhere if anyone like to see the console output.
also tried:
linux /casper/vmlinuz autoinstall debian-installer/locale=en_US console-setup/layoutcode=us ds=nocloud-net;s=http://192.168.10.10:3003/ ---
linux /casper/vmlinuz autoinstall debian-installer/locale=en_US console-setup/layoutcode=us ds=nocloud-net;s=http://192.168.10.10:3003/ --
linux /casper/vmlinuz autoinstall ds=nocloud-net;seedfrom=http://192.168.10.10:3003/
EDIT: Fixed the user-data, pasted the wrong (too short version), this is the latest.