k0: fully disable kube control/data plane on bc01n01,n02

Change-Id: I103f41059d75aa6b3ce318fd6f863f50ad013160
Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1697
Reviewed-by: implr <implr@hackerspace.pl>
diff --git a/cluster/machines/bc01n01.hswaw.net.nix b/cluster/machines/bc01n01.hswaw.net.nix
index 2c69a79..a753e9f 100644
--- a/cluster/machines/bc01n01.hswaw.net.nix
+++ b/cluster/machines/bc01n01.hswaw.net.nix
@@ -22,7 +22,7 @@
 
   hscloud.kube.control.enable = false;
   hscloud.kube.data = {
-    enable = true;
+    enable = false;
     podNet = "10.10.16.0/24";
   };
 
diff --git a/cluster/machines/bc01n02.hswaw.net.nix b/cluster/machines/bc01n02.hswaw.net.nix
index 904ef1b..12366b2 100644
--- a/cluster/machines/bc01n02.hswaw.net.nix
+++ b/cluster/machines/bc01n02.hswaw.net.nix
@@ -21,8 +21,8 @@
   };
 
   hscloud.kube = {
-    control.enable = true;
-    data.enable = true;
+    control.enable = false;
+    data.enable = false;
     data.podNet = "10.10.17.0/24";
   };
 }