b1dae28aa5
Replace Hetzner infrastructure and cloud-provider assumptions with Proxmox VM clones, kube-vip API HA, and NFS-backed storage. Update bootstrap, Flux addons, CI workflows, and docs to target the new private Proxmox baseline while preserving the existing Tailscale, Doppler, Flux, Rancher, and B2 backup flows.
21 lines
518 B
Cheetah
21 lines
518 B
Cheetah
[control_plane]
|
|
{% for node in control_planes %}
|
|
{{ node.name }} ansible_host={{ node.public_ip }} k3s_private_ip={{ node.private_ip }}
|
|
{% endfor %}
|
|
|
|
[workers]
|
|
{% for node in workers %}
|
|
{{ node.name }} ansible_host={{ node.public_ip }} k3s_private_ip={{ node.private_ip }}
|
|
{% endfor %}
|
|
|
|
[cluster:children]
|
|
control_plane
|
|
workers
|
|
|
|
[cluster:vars]
|
|
ansible_user=ubuntu
|
|
ansible_python_interpreter=/usr/bin/python3
|
|
ansible_ssh_private_key_file={{ private_key_file }}
|
|
k3s_version=latest
|
|
kube_api_endpoint={{ kube_api_lb_ip }}
|