From 46bdb6b76a984865b8f3a3d4419c58c2f6bdc2c3 Mon Sep 17 00:00:00 2001 From: Leonard Cohnen Date: Mon, 13 Nov 2023 16:22:16 +0100 Subject: [PATCH] fix cidr --- cli/internal/state/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/internal/state/state.go b/cli/internal/state/state.go index c70094b8c6..1883091dde 100644 --- a/cli/internal/state/state.go +++ b/cli/internal/state/state.go @@ -569,7 +569,7 @@ func (s *State) Migrate() error { s.Infrastructure.InClusterEndpoint = s.Infrastructure.ClusterEndpoint } if s.Infrastructure.IPCidrNode == "" { - s.Infrastructure.IPCidrNode = "192.168.2.1" + s.Infrastructure.IPCidrNode = "192.168.2.1/32" } } return nil