kubernetes module: fix cidr ranges

authored by Jaka Hudoklin and committed by Robin Gloster d842d539 b25d1559

+2 -2
+2 -2
nixos/modules/services/cluster/kubernetes/default.nix
··· 313 313 A CIDR notation IP range from which to assign service cluster IPs. 314 314 This must not overlap with any IP ranges assigned to nodes for pods. 315 315 ''; 316 - default = "10.10.10.10/24"; 316 + default = "10.0.0.0/24"; 317 317 type = types.str; 318 318 }; 319 319 ··· 715 715 716 716 clusterCidr = mkOption { 717 717 description = "Kubernetes controller manager and proxy CIDR Range for Pods in cluster."; 718 - default = "10.10.0.0/16"; 718 + default = "10.1.0.0/16"; 719 719 type = types.str; 720 720 }; 721 721