great link: https://medium.com/@ahmadb/using-multipass-with-cloud-init-bc4b92ad27d9 and: https://sysadmins.co.za/getting-started-with-multipass-vms/
$ multipass launch -n kkm \
--cpus 2 \
--mem 4696m \
--disk 30G \
--cloud-init ./cloudinit.yaml
# ping local dns of VM (by installing package avahi-daemon in ubuntu it enables mDNS locally)
$ ping kkm.local
# to run kontain enabled container
$ docker run --rm --runtime=krun -p 5000:5000 kontainguide/py-flask-hello:1.0
# list images
$ multipass find
# get IP
$ multipass info kkm|grep 'v4'
IPv4: 192.168.205.7
# with avahi you can use <vm>.local
$ ping kkm.local
# execute command in vm
$ multipass exec <vm> -- /bin/bash
$ multipass list
# mount local volume
$ multipass mount $HOME/dev/kontain kkm1:~/dev/kontain