about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2016-12-12 01:24:34 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2016-12-12 01:25:23 +0100
commit2867f88781c160b2264f20a4d9af6f6f72184c36 (patch)
treec821685a2bce396d1c7d0dad4b83df484538ea87 /nixos/modules
parentc4a85eafa4fd58ff2594317df0ebbca788d95418 (diff)
downloadnixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar.gz
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar.bz2
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar.lz
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar.xz
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.tar.zst
nixlib-2867f88781c160b2264f20a4d9af6f6f72184c36.zip
kubernetes module: fix default dns ip
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/cluster/kubernetes.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/cluster/kubernetes.nix b/nixos/modules/services/cluster/kubernetes.nix
index 4bdfa6d1ff58..fbf7412a6cd9 100644
--- a/nixos/modules/services/cluster/kubernetes.nix
+++ b/nixos/modules/services/cluster/kubernetes.nix
@@ -484,7 +484,7 @@ in {
 
       clusterDns = mkOption {
         description = "Use alternative dns.";
-        default = "10.10.1.1";
+        default = "10.10.0.1";
         type = types.str;
       };