Please test autoinstalls for 20.04!

How do I define the ntp server to use? With d-i it was clock-setup/ntp-server 1.1.1.1 but how to do it now? There is like zero documentation for the new installer. Feels like d-i all over again. I am really disappointed.

I mean yes, I could probably do it via some hacky whacky as always stuff using late-commands: since d-i got deprecated alá unlinking the current timezone and linking a new one to /etc/localtime but my god, there must be a native way… Is there?

Another problem I couldn’t figure out. I want a simple encrypted LVM setup. I tried it with the following, where I get LVM but it is not encrypted

storage:
  grub: [...]
  swap: [...]
  layout:
    name: lvm
    match: {}
    key: mysecretkey

But this didn’t work. I don’t need a complex partition setup nor do I want to define sizes. I need what the installer does but via autoinstall. The problem is I don’t know whether the setup will be deployed on a sata (sda) or nvme device, therefore I cannot define a path and cannot use the custom layout. Using the old d-i I had an early command for partman to find the best matching disk and handed that to partman-auto/disk $bootdev and grub-installer/bootdev $bootdev defining lvm and a passphrase which always worked just like I wanted. I cannot get the setup to work using autoinstall.

Any help would be appreciated.