Compare commits
2 Commits
6325941078
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e10e449333 | ||
|
|
f57ca9ac44 |
@@ -18,7 +18,7 @@
|
||||
tags: "{{ proxmox_tags }}"
|
||||
description: "Created via Ansible with cloud-init"
|
||||
boot: "order=scsi0"
|
||||
cpu: "x86-64-v2-AES"
|
||||
cpu: "{{ proxmox_node_cpu[vm.node] | default('x86-64-v2-AES') }}"
|
||||
ciuser: "{{ vm.ciuser }}"
|
||||
cipassword: "{{ vm_secrets[proxmox_secrets_prefix + '_' + vm.name.replace('-', '_')] }}"
|
||||
ipconfig:
|
||||
|
||||
@@ -2,3 +2,12 @@ proxmox_api_host: 192.168.20.12
|
||||
proxmox_api_user: root
|
||||
proxmox_api_token_id: terraform
|
||||
proxmox_api_token_secret: "{{ vault_pve.api.token_secret }}"
|
||||
|
||||
# CPU type per Proxmox node — x86-64-v3 requires AVX2 (Ryzen 5700U, N100, i5-7200U)
|
||||
# aya01 (Celeron N5105) tops out at SSE4.2, must stay at v2
|
||||
proxmox_node_cpu:
|
||||
aya01: "x86-64-v2-AES"
|
||||
inko01: "x86-64-v3"
|
||||
lulu: "x86-64-v3"
|
||||
mii01: "x86-64-v3"
|
||||
naruto01: "x86-64-v3"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
vms:
|
||||
- name: "docker-host11"
|
||||
node: "inko01"
|
||||
node: "aya01"
|
||||
vmid: 411
|
||||
cores: 2
|
||||
memory: 4096 # in MiB
|
||||
@@ -68,7 +68,7 @@ vms:
|
||||
sshkeys: "{{ pubkey }}"
|
||||
disk_size: 32 # in Gb
|
||||
- name: "k3s-server11"
|
||||
node: "inko01"
|
||||
node: "aya01"
|
||||
vmid: 111
|
||||
cores: 2
|
||||
memory: 4096 # in MiB
|
||||
@@ -189,7 +189,7 @@ vms:
|
||||
sshkeys: "{{ pubkey }}"
|
||||
disk_size: 128
|
||||
- name: "k3s-agent21"
|
||||
node: "inko01"
|
||||
node: "aya01"
|
||||
vmid: 221
|
||||
cores: 2
|
||||
memory: 4096
|
||||
|
||||
Reference in New Issue
Block a user