Initial commit

This commit is contained in:
2026-06-08 21:32:55 +02:00
commit 498018d3d7
11 changed files with 330 additions and 0 deletions
@@ -0,0 +1,12 @@
---
- name: Generate Ignition config for CoreOS/Flatcar
template:
src: ignition.json.j2
dest: "/tmp/{{ vm_name }}_ignition.json"
when: os_type == "coreos" or os_type == "flatcar"
- name: Generate Cloud-init config for MicroOS
template:
src: user-data.yaml.j2
dest: "/tmp/{{ vm_name }}_user-data"
when: os_type == "microos"