Last active
October 14, 2019 15:39
-
-
Save maarek/bc6b9eed2965ce57904ad30cffb2e52e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# talos-mstr-01 | |
pvesm alloc local-zfs 201 '' 25G | |
qm create 201 \ | |
--name talos-mstr-01 \ | |
--cdrom local:iso/talos.iso \ | |
--ostype other \ | |
--ide0 local-zfs:vm-201-disk-0,size=25G \ | |
--sockets 1 \ | |
--cores 1 \ | |
--net0 e1000=52:05:42:00:02:01,bridge=vmbr0,firewall=1 \ | |
--scsihw virtio-scsi-pci \ | |
--memory 1024 \ | |
--onboot yes | |
# talos-mstr-02 | |
pvesm alloc local-zfs 202 '' 25G | |
qm create 202 \ | |
--name talos-mstr-02 \ | |
--cdrom local:iso/talos.iso \ | |
--ostype other \ | |
--ide0 local-zfs:vm-202-disk-0,size=25G \ | |
--sockets 1 \ | |
--cores 1 \ | |
--net0 e1000=52:05:42:00:02:02,bridge=vmbr0,firewall=1 \ | |
--scsihw virtio-scsi-pci \ | |
--memory 1024 \ | |
--onboot yes | |
# talos-mstr-03 | |
pvesm alloc local-zfs 203 '' 25G | |
qm create 203 \ | |
--name talos-mstr-03 \ | |
--cdrom local:iso/talos.iso \ | |
--ostype other \ | |
--ide0 local-zfs:vm-203-disk-0,size=25G \ | |
--sockets 1 \ | |
--cores 1 \ | |
--net0 e1000=52:05:42:00:02:03,bridge=vmbr0,firewall=1 \ | |
--scsihw virtio-scsi-pci \ | |
--memory 1024 \ | |
--onboot yes | |
# talos-wrkr-01 | |
pvesm alloc local-zfs 211 '' 50G | |
qm create 211 \ | |
--name talos-wrkr-01 \ | |
--cdrom local:iso/talos.iso \ | |
--ostype other \ | |
--ide0 local-zfs:vm-211-disk-0,size=50G \ | |
--sockets 1 \ | |
--cores 2 \ | |
--net0 e1000=52:05:42:00:02:11,bridge=vmbr0,firewall=1 \ | |
--scsihw virtio-scsi-pci \ | |
--memory 8096 \ | |
--onboot yes | |
# talos-wrkr-02 | |
pvesm alloc local-zfs 212 '' 50G | |
qm create 212 \ | |
--name talos-wrkr-02 \ | |
--cdrom local:iso/talos.iso \ | |
--ostype other \ | |
--ide0 local-zfs:vm-211-disk-0,size=50G \ | |
--sockets 1 \ | |
--cores 2 \ | |
--net0 e1000=52:05:42:00:02:12,bridge=vmbr0,firewall=1 \ | |
--scsihw virtio-scsi-pci \ | |
--memory 8096 \ | |
--onboot yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment