From 43b6db895d40df11204233e1c89d88ca5c22be6e Mon Sep 17 00:00:00 2001 From: Serge Bazanski Date: Mon, 9 Oct 2023 22:42:30 +0000 Subject: [PATCH] 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 --- cluster/machines/bc01n01.hswaw.net.nix | 2 +- cluster/machines/bc01n02.hswaw.net.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cluster/machines/bc01n01.hswaw.net.nix b/cluster/machines/bc01n01.hswaw.net.nix index 2c69a79b..a753e9f3 100644 --- a/cluster/machines/bc01n01.hswaw.net.nix +++ b/cluster/machines/bc01n01.hswaw.net.nix @@ -22,7 +22,7 @@ rec { 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 904ef1bc..12366b20 100644 --- a/cluster/machines/bc01n02.hswaw.net.nix +++ b/cluster/machines/bc01n02.hswaw.net.nix @@ -21,8 +21,8 @@ rec { }; hscloud.kube = { - control.enable = true; - data.enable = true; + control.enable = false; + data.enable = false; data.podNet = "10.10.17.0/24"; }; }