Did you choose the "Graphical expert install" under the "Advanced option..." entry when booting from the Debian ISO?
That will give you alot of more options.
And you can use the installer to manually partition your disk instead of using the guided partitioning.
I for example got 2 disks that I wanted to use as a mirror. Your boot partitions need to be unencrypted, So I first created a sda1 and sdb1 with each 1MB as my grub partition.
Then I created the partition sda2 and sdb2 of 300MB (you really should use 512MB nowadays) each for my ESP.
Then I created sda3 and sdb3 as a mdadm raid1 array for my unencrypted but mirrored boot partition.
Then I created sda4 and sda5 as a mdadm raid1 array for my LUKS.
Ontop of that LUKS I created a LVM.
Ontop of that LVM my VG.
Optop of that VG my Swap and my root LVs.
And that all can be done using the GUI of the Debian installer so this will be created:
Code:
root@Hypervisor:~# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 93.2G 0 disk
├─sda1 8:1 0 1M 0 part
├─sda2 8:2 0 286M 0 part
├─sda3 8:3 0 488M 0 part
│ └─md0 9:0 0 487M 0 raid1 /boot
└─sda4 8:4 0 92.4G 0 part
└─md1 9:1 0 92.3G 0 raid1
└─md1_crypt 253:0 0 92.3G 0 crypt
├─vgpmx-lvroot 253:1 0 21G 0 lvm /
└─vgpmx-lvswap 253:2 0 61G 0 lvm [SWAP]
sdb 8:16 0 93.2G 0 disk
├─sdb1 8:17 0 1M 0 part
├─sdb2 8:18 0 286M 0 part /boot/efi
├─sdb3 8:19 0 488M 0 part
│ └─md0 9:0 0 487M 0 raid1 /boot
└─sdb4 8:20 0 92.4G 0 part
└─md1 9:1 0 92.3G 0 raid1
└─md1_crypt 253:0 0 92.3G 0 crypt
├─vgpmx-lvroot 253:1 0 21G 0 lvm /
└─vgpmx-lvswap 253:2 0 61G 0 lvm [SWAP]