2026-02-28 20:24:55 +00:00
|
|
|
[control_plane]
|
|
|
|
|
{% for ip in control_plane_ips %}
|
|
|
|
|
{{ ip }}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
[workers]
|
|
|
|
|
{% for ip in worker_ips %}
|
|
|
|
|
{{ ip }}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
[cluster:children]
|
|
|
|
|
control_plane
|
|
|
|
|
workers
|
|
|
|
|
|
|
|
|
|
[cluster:vars]
|
|
|
|
|
ansible_user=root
|
|
|
|
|
ansible_python_interpreter=/usr/bin/python3
|
2026-02-28 22:53:37 +00:00
|
|
|
ansible_ssh_private_key_file={{ private_key_file }}
|
2026-02-28 20:24:55 +00:00
|
|
|
k3s_version=latest
|