60 lines
2.4 KiB
Plaintext
60 lines
2.4 KiB
Plaintext
#cloud-config
|
|
autoinstall:
|
|
version: 1
|
|
identity:
|
|
hostname: mirror
|
|
username: ubuntu
|
|
# password is just ubuntu
|
|
password: "$6$exDY1mhS4KUYCE/2$zmn9ToZwTKLhCw.b4/b.ZRTIZM30JZ4QrOQ2aOXJ8yk96xpcCof0kxKwuX1kqLG/ygbJ1f8wxED22bTL4F46P0"
|
|
locale: en_US
|
|
ssh:
|
|
allow-pw: true
|
|
authorized-keys: []
|
|
install-server: true
|
|
storage:
|
|
config:
|
|
# disks =-=-=-=-=-=-=
|
|
- {id: vda, name: '', path: /dev/vda, type: disk, ptable: gpt,
|
|
preserve: false, grub_device: false}
|
|
- {id: vdb, name: '', path: /dev/vdb, type: disk, ptable: gpt,
|
|
preserve: false, grub_device: false}
|
|
# partitions =-=-=-=-=-=
|
|
# vda1
|
|
- {id: vda1, type: partition, size: 500M, device: vda, number: 1,
|
|
preserve: false, wipe: superblock, flag: boot, grub_device: true}
|
|
- {id: vda1-format, type: format, volume: vda1,
|
|
fstype: fat32, preserve: false}
|
|
# vda2
|
|
- {id: vda2, type: partition, size: 9G, device: vda, number: 2,
|
|
preserve: false, wipe: superblock, flag: '', grub_device: false}
|
|
# vdb1
|
|
- {id: vdb1, type: partition, size: 500M, device: vdb, number: 1,
|
|
preserve: false, wipe: superblock, flag: boot, grub_device: true}
|
|
- {id: vdb1-format, type: format, volume: vdb1,
|
|
fstype: fat32, preserve: false}
|
|
# vdb2
|
|
- {id: vdb2, type: partition, size: 9G, device: vdb, number: 2,
|
|
preserve: false, wipe: superblock, flag: '', grub_device: false}
|
|
# raid =-=-=-=-=-=
|
|
- id: md0
|
|
name: md0
|
|
type: raid
|
|
raidlevel: raid1
|
|
devices: [vda2, vdb2]
|
|
spare_devices: []
|
|
preserve: false
|
|
# lvm =-=-=-=-=-=
|
|
- id: vg0
|
|
name: vg0
|
|
type: lvm_volgroup
|
|
devices: [md0]
|
|
preserve: false
|
|
# partition
|
|
- {id: vg0-root, name: root, type: lvm_partition, size: 8G,
|
|
preserve: false, volgroup: vg0}
|
|
- {id: vg0-root-format, type: format, volume: vg0-root,
|
|
fstype: ext4, preserve: false}
|
|
# mount points =-=-=-=-=-=
|
|
- {id: boot-mount, type: mount, path: /boot/efi, device: vda1-format}
|
|
- {id: root-mount, type: mount, path: /, device: vg0-root-format}
|