WebGUI に debian-installer デプロイメント メソッドがないのは驚きでしたが、MAAS cli/API には新しいオプションとして追加されました。
さらに、ソースの注記によると、この機能は廃止されていることがわかりました。
:param boot_type: The installation type of the node. 'fastpath': use
the default installer. 'di' use the debian installer.
Note that using 'di' is now deprecated and will be removed in favor
of the default installer in MAAS 1.9.
LVM が必要なノードをいくつか管理したいと思います。これは debian-installer を使って実現できます。fastpath を使用して LVM ベースのパーティショニングを展開する方法はありますか?
ありがとう。
答え1
preseed オプションはまだあるようです。デフォルトは次のとおりです。
d-i partman/early_command string debconf-set partman-auto/disk `list-devices disk | head -n1`
d-i partman-iscsi/mainmenu string finish
d-i partman-auto/method string regular
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select Finish partitioning and write changes to disk
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i partman/default_filesystem string ext4
必要に応じてこれを調整できるはずです。