32 lines
757 B
YAML
32 lines
757 B
YAML
# Config for: Ansible inventory
|
|
# Applied by: Referenced by all ansible-playbook commands with -i flag
|
|
all:
|
|
vars:
|
|
ansible_user: nik
|
|
ansible_ssh_private_key_file: ~/.ssh/id_ed25519-nik-macbookair
|
|
|
|
children:
|
|
k3s_server:
|
|
hosts:
|
|
minisforum:
|
|
ansible_host: 192.168.7.77
|
|
ansible_port: 430
|
|
|
|
k3s_agents:
|
|
hosts:
|
|
debian:
|
|
ansible_host: 192.168.7.183
|
|
ansible_port: 430
|
|
|
|
mac_mini:
|
|
hosts:
|
|
mac-mini:
|
|
ansible_host: 192.168.7.96
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
gpu_workstation:
|
|
hosts:
|
|
gpu-node:
|
|
ansible_host: 192.168.7.98
|
|
ansible_port: 430
|
|
ansible_python_interpreter: /usr/bin/python3.12 |