max / mountaineer
| 1 | # Mountaineer installer config — VM test defaults. |
| 2 | # |
| 3 | # Schema (MVP): |
| 4 | # disk: block device to install to (must exist on target) |
| 5 | # encrypt: true|false |
| 6 | # passphrase: if encrypt is true (plaintext here — VM-test only) |
| 7 | # hostname: short hostname |
| 8 | # ssh_pubkey: operator pubkey for root (bootstraps console-less access) |
| 9 | # root_password: console root password (sshd password auth is disabled) |
| 10 | # network: dhcp|static (static needs more fields, not in MVP) |
| 11 | # |
| 12 | # The installer reads this from /media/cdrom/install.yaml on the live ISO |
| 13 | # (mounted via the second qcow drive in vm-test-install.sh). If absent, |
| 14 | # the installer falls back to interactive dialog prompts. |
| 15 | |
| 16 | disk: /dev/vda |
| 17 | encrypt: false |
| 18 | hostname: mountaineer-test |
| 19 | ssh_pubkey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIGRt2oniXTd82AVcOjTP5X2ZWRg6/mZpuiNBP3WedNT mountaineer-builder" |
| 20 | root_password: mountaineer |
| 21 | network: dhcp |
| 22 |