diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2026-05-13 00:13:57 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-05-16 18:42:27 +0300 |
| commit | b5860daf11ac353049cb1654b9414a129e5cfb96 (patch) | |
| tree | 87ed89711e4f0e85ace0a97fa123199152c67302 /inventory/test | |
| parent | 4715a28fdcd87440400d17154bfa361d99db29cc (diff) | |
Rework
Diffstat (limited to 'inventory/test')
| -rw-r--r-- | inventory/test/hosts.yml | 34 | ||||
| l--------- | inventory/test/jails.py | 1 |
2 files changed, 35 insertions, 0 deletions
diff --git a/inventory/test/hosts.yml b/inventory/test/hosts.yml new file mode 100644 index 0000000..fdf982a --- /dev/null +++ b/inventory/test/hosts.yml @@ -0,0 +1,34 @@ +all: + children: + servers: + hosts: + test_vm: + ansible_host: 10.0.20.2 + ansible_user: root + ansible_ssh_private_key_file: vm/id_ed25519 + ansible_ssh_common_args: "-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o IdentityAgent=none" + host_roles: + - host + - host_test + nic_lan: vtnet0 + nic_wan: vtnet0 + arch: arm64/aarch64 + dns_nameserver: "10.0.20.1" + lan_ipv4_gateway: "10.0.20.1" + lan_ipv4_cidr: "10.0.20.2/24" + is_prod: false + jails: + vars: + ansible_host: 10.0.20.2 + ansible_jail_host: 10.0.20.2 + ansible_user: root + ansible_ssh_private_key_file: vm/id_ed25519 + ansible_ssh_common_args: "-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o IdentityAgent=none" + jail_delegate_host: test_vm + jail_lan_cidr: "10.0.20.0/24" + jail_lan_offset: 100 + ssl_enabled: false + is_prod: false + ingress_wan_static: "10.0.20.3/24" + dns_nameserver: "10.0.20.1" + lan_ipv4_gateway: "10.0.20.1" diff --git a/inventory/test/jails.py b/inventory/test/jails.py new file mode 120000 index 0000000..d036389 --- /dev/null +++ b/inventory/test/jails.py @@ -0,0 +1 @@ +../jails.py
\ No newline at end of file |
