From 689be63a165421603eb6a40465fbfbd50fb923bb Mon Sep 17 00:00:00 2001 From: Sandwich Date: Fri, 22 Mar 2024 12:43:13 +0100 Subject: [PATCH] Add inventory example in yaml --- inventory_sample.ini => inventory_example.ini | 0 inventory_example.yml | 28 +++++++++++++++++++ 2 files changed, 28 insertions(+) rename inventory_sample.ini => inventory_example.ini (100%) create mode 100644 inventory_example.yml diff --git a/inventory_sample.ini b/inventory_example.ini similarity index 100% rename from inventory_sample.ini rename to inventory_example.ini diff --git a/inventory_example.yml b/inventory_example.yml new file mode 100644 index 0000000..e262c7e --- /dev/null +++ b/inventory_example.yml @@ -0,0 +1,28 @@ +all: + children: + promox-kvm: + hosts: + 192.168.122.10: + hostname: proxy + vm_id: 100 + os: archlinux + filesystem: btrfs + vm_memory: "2048" + vm_ballo: "1024" + vm_cpus: "2" + vm_size: "5" + vm_nif: vmbr1 + vm_gw: 192.168.122.1 + vm_dns: 1.1.1.1 + 192.168.122.11: + hostname: database + vm_id: 101 + os: archlinux + filesystem: btrfs + vm_memory: "6144" + vm_ballo: "3072" + vm_cpus: "4" + vm_size: "40" + vm_nif: vmbr1 + vm_gw: 192.168.122.1 + vm_dns: 1.1.1.1 \ No newline at end of file