update: add k3s_url_ip variable to configuration files and update references in Ansible playbooks

This commit is contained in:
jon brookes 2025-08-09 13:32:07 +01:00
parent ae59661982
commit 34fbe9b5b3
5 changed files with 18 additions and 14 deletions

View file

@ -3,6 +3,7 @@
vm1_ip: "{{ lookup('env', 'VM1_IP') | default('192.168.56.80', true) }}"
vm2_ip: "{{ lookup('env', 'VM2_IP') | default('192.168.56.81', true) }}"
vm3_ip: "{{ lookup('env', 'VM3_IP') | default('192.168.56.82', true) }}"
k3s_url_ip: "{{ lookup('env', 'K3S_URL_IP') | default('192.168.56.250', true) }}"
workstation_ip: "{{ lookup('env', 'WORKSTATION_IP') | default('192.168.56.10', true) }}"
network_prefix: "{{ lookup('env', 'VAGRANT_NETWORK_PREFIX') | default('192.168.56', true) }}"