From dd38c3c3f0bdffa84ad541db364e62409d894c8a Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Sun, 26 Oct 2025 19:32:49 +0100 Subject: [PATCH] fix: Use correct IP addresses for controlplanes --- pve01.wheatley.in/k8s-wheatley/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pve01.wheatley.in/k8s-wheatley/main.tf b/pve01.wheatley.in/k8s-wheatley/main.tf index e0079a3..fdfe33b 100644 --- a/pve01.wheatley.in/k8s-wheatley/main.tf +++ b/pve01.wheatley.in/k8s-wheatley/main.tf @@ -10,7 +10,7 @@ locals { talos_version = "1.11.3" ipv4_gateway = "10.13.38.1" ipv4_cidr = "/24" - cluster_endpoint_ip = "10.13.38.20" + cluster_endpoint_ip = "10.13.38.10" controlplanes = { @@ -25,15 +25,15 @@ locals { nodes = [ { name = "cp01" - ip_address = "10.13.38.21" + ip_address = "10.13.38.11" }, { name = "cp02" - ip_address = "10.13.38.22" + ip_address = "10.13.38.12" }, { name = "cp03" - ip_address = "10.13.38.23" + ip_address = "10.13.38.13" } ] }