Agora, tenho procurado o código Maas e as referências online, por isso criei uma nova configuração, talvez alguém goste. O que funciona: 1. Detectando as menores unidades, se tivermos duas unidades com o mesmo tamanho, criaremos invasões de software com pontos de montagem para /, / usr, / var, / home 2. Grub corretamente instalando-se quando o dispositivo não é sda / sdb.
O que não funciona como esperado é a configuração do resolv.conf, eu acho que é o dnsmasq ou algo assim, que ignora a minha configuração de rede e coloca o 127.0.0.1 no resolv.conf, vai investigá-lo. Também pode ser alterado para algo como example.org Também adicionei comandos atrasados da minha configuração nesta listagem (embora eu tenha omitido alguns deles), que adiciona fatos para o fantoche, instale o agente-fantoche e execute-o (depois da execução do boneco também há uma seção killall - ele precisava liberar ambiente chroot, uma vez que falha a instalação, caso contrário o diretório temporário fica ocupado e não pode ser desmontado)
#cloud-config
debconf_selections:
maas: |
{{for line in str(curtin_preseed).splitlines()}}
{{line}}
{{endfor}}
early_commands:
01_empty_command: echo INSTALLATION STARTED
{{py:
import operator
deviceListTmp = node.blockdevice_set.all()
deviceList = sorted(deviceListTmp, key=operator.attrgetter('size'))
has_raid = False
if (len(deviceList) > 1):
bootdrive_1 = deviceList[0]
bootdrive_2 = deviceList[1]
if bootdrive_1.size == bootdrive_2.size:
has_raid = True
else:
bootdrive_1 = deviceList[0]
}}
{{if has_raid}}
storage:
version: 1
config:
- id: {{bootdrive_1.name.strip()}}
type: disk
ptable: gpt
path: /dev/{{bootdrive_1.name.strip()}}
name: boot_drive_1
grub_device: 1
wipe: superblock-recursive
- id: bios_boot_partition_1
type: partition
size: 1MB
device: {{bootdrive_1.name.strip()}}
flag: bios_grub
- id: {{bootdrive_1.name.strip()}}2
type: partition
size: 30G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}3
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}4
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}5
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}6
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_2.name.strip()}}
type: disk
ptable: gpt
path: /dev/{{bootdrive_2.name.strip()}}
name: boot_drive_2
grub_device: 1
wipe: superblock-recursive
- id: bios_boot_partition_2
type: partition
size: 1MB
device: {{bootdrive_2.name.strip()}}
flag: bios_grub
- id: {{bootdrive_2.name.strip()}}2
type: partition
size: 30G
device: {{bootdrive_2.name.strip()}}
- id: {{bootdrive_2.name.strip()}}3
type: partition
size: 19G
device: {{bootdrive_2.name.strip()}}
- id: {{bootdrive_2.name.strip()}}4
type: partition
size: 19G
device: {{bootdrive_2.name.strip()}}
- id: {{bootdrive_2.name.strip()}}5
type: partition
size: 19G
device: {{bootdrive_2.name.strip()}}
- id: {{bootdrive_2.name.strip()}}6
type: partition
size: 19G
device: {{bootdrive_2.name.strip()}}
- id: mddevice0
name: md0
type: raid
raidlevel: 1
devices:
- {{bootdrive_1.name.strip()}}2
- {{bootdrive_2.name.strip()}}2
- id: mddevice1
name: md1
type: raid
raidlevel: 1
devices:
- {{bootdrive_1.name.strip()}}3
- {{bootdrive_2.name.strip()}}3
- id: mddevice2
name: md2
type: raid
raidlevel: 1
devices:
- {{bootdrive_1.name.strip()}}4
- {{bootdrive_2.name.strip()}}4
- id: mddevice3
name: md3
type: raid
raidlevel: 1
devices:
- {{bootdrive_1.name.strip()}}5
- {{bootdrive_2.name.strip()}}5
- id: mddevice4
name: md4
type: raid
raidlevel: 1
devices:
- {{bootdrive_1.name.strip()}}6
- {{bootdrive_2.name.strip()}}6
- id: md_swap
type: format
fstype: swap
volume: mddevice0
- id: md_root
type: format
fstype: ext4
volume: mddevice1
- id: md_usr
type: format
fstype: ext4
volume: mddevice2
- id: md_var
type: format
fstype: ext4
volume: mddevice3
- id: md_home
type: format
fstype: ext4
volume: mddevice4
- id: mount_swap
type: mount
device: md_swap
- id: mount_root
type: mount
path: /
device: md_root
- id: mount_usr
type: mount
path: /usr
device: md_usr
- id: mount_var
type: mount
path: /var
device: md_var
- id: mount_home
type: mount
path: /home
device: md_home
grub:
install_devices:
- /dev/{{bootdrive_1.name.strip()}}
- /dev/{{bootdrive_2.name.strip()}}
{{else}}
storage:
version: 1
config:
- id: {{bootdrive_1.name.strip()}}
type: disk
ptable: gpt
path: /dev/{{bootdrive_1.name.strip()}}
name: boot_drive_1
grub_device: 1
wipe: superblock-recursive
- id: bios_boot_partition
type: partition
size: 1MB
device: {{bootdrive_1.name.strip()}}
flag: bios_grub
- id: {{bootdrive_1.name.strip()}}2
type: partition
size: 30G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}3
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}4
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}5
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: {{bootdrive_1.name.strip()}}6
type: partition
size: 19G
device: {{bootdrive_1.name.strip()}}
- id: fs_swap
type: format
fstype: swap
volume: {{bootdrive_1.name.strip()}}2
- id: fs_root
type: format
fstype: ext4
volume: {{bootdrive_1.name.strip()}}3
- id: fs_usr
type: format
fstype: ext4
volume: {{bootdrive_1.name.strip()}}4
- id: fs_var
type: format
fstype: ext4
volume: {{bootdrive_1.name.strip()}}5
- id: fs_home
type: format
fstype: ext4
volume: {{bootdrive_1.name.strip()}}6
- id: mount_swap
type: mount
device: fs_swap
- id: mount_root
type: mount
path: /
device: fs_root
- id: mount_usr
type: mount
path: /usr
device: fs_usr
- id: mount_var
type: mount
path: /var
device: fs_var
- id: mount_home
type: mount
path: /home
device: fs_home
grub:
install_devices:
- /dev/{{bootdrive_1.name.strip()}}
{{endif}}
network:
version: 1
config:
- type: nameserver
address:
- 10.121.10.1
- 192.168.121.1
search:
- <domainname>
swap:
filename: swap.img
size: 0
late_commands:
12_reconfigure_openssh: ["curtin", "in-target", "--", "sh", "-c", "dpkg-reconfigure openssh-server"]
13_add_puppet_key: ["curtin", "in-target", "--", "sh", "-c", "wget -O /tmp/puppet.key http://apt.puppetlabs.com/DEB-GPG-KEY-puppet && apt-key add /tmp/puppet.key"]
14_add_puppet_repo: ["curtin", "in-target", "--", "sh", "-c", "echo 'deb http://apt.puppetlabs.com xenial PC1' >/etc/apt/sources.list.d/puppetlabs-pc1.list && apt-get update"]
15_run_fix: ["curtin", "in-target", "--", "sh", "-c", "apt-get -y -f install"]
18_install_puppet_and_requrements: ["curtin", "in-target", "--", "sh", "-c", "apt-get -y install puppet-agent lsof jq ipmiutil wget python-requests parted strace tcpdump mc net-tools lsb-release"]
20_add_team_fact: ["curtin", "in-target", "--", "sh", "-c", "wget -O /tmp/smdb_data.py http://10.7.36.1/smdb_data.py && python /tmp/smdb_data.py && rm -f /tmp/smdb_data.py"]
21_run_puppet: ["curtin", "in-target", "--", "sh", "-c", "/opt/puppetlabs/bin/puppet agent -t --server puppet4.<domain>; killall -9 splunkd; killall -9 zabbix_agentd; killall -9 mdadm; lsof /proc"]
22_display_network_config: cat $OUTPUT_NETWORK_CONFIG