From d842d539d93152ff771d5f6038bf2b4a36d2f035 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Tue, 30 May 2017 14:54:29 +0200 Subject: [PATCH] kubernetes module: fix cidr ranges --- nixos/modules/services/cluster/kubernetes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/cluster/kubernetes/default.nix b/nixos/modules/services/cluster/kubernetes/default.nix index 0a14340be09..b65c5035fc6 100644 --- a/nixos/modules/services/cluster/kubernetes/default.nix +++ b/nixos/modules/services/cluster/kubernetes/default.nix @@ -313,7 +313,7 @@ in { A CIDR notation IP range from which to assign service cluster IPs. This must not overlap with any IP ranges assigned to nodes for pods. ''; - default = "10.10.10.10/24"; + default = "10.0.0.0/24"; type = types.str; }; @@ -715,7 +715,7 @@ in { clusterCidr = mkOption { description = "Kubernetes controller manager and proxy CIDR Range for Pods in cluster."; - default = "10.10.0.0/16"; + default = "10.1.0.0/16"; type = types.str; };