fix: Use correct IP addresses for controlplanes

This commit is contained in:
Peter 2025-10-26 19:32:49 +01:00
parent 310f6fb29d
commit dd38c3c3f0
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg

View file

@ -10,7 +10,7 @@ locals {
talos_version = "1.11.3" talos_version = "1.11.3"
ipv4_gateway = "10.13.38.1" ipv4_gateway = "10.13.38.1"
ipv4_cidr = "/24" ipv4_cidr = "/24"
cluster_endpoint_ip = "10.13.38.20" cluster_endpoint_ip = "10.13.38.10"
controlplanes = { controlplanes = {
@ -25,15 +25,15 @@ locals {
nodes = [ nodes = [
{ {
name = "cp01" name = "cp01"
ip_address = "10.13.38.21" ip_address = "10.13.38.11"
}, },
{ {
name = "cp02" name = "cp02"
ip_address = "10.13.38.22" ip_address = "10.13.38.12"
}, },
{ {
name = "cp03" name = "cp03"
ip_address = "10.13.38.23" ip_address = "10.13.38.13"
} }
] ]
} }