Remove ceph from k3s nodes

This commit is contained in:
asonix 2023-02-19 12:27:02 -06:00
parent 5e17a93a3d
commit a1f3fbbb37

View file

@ -2,8 +2,6 @@
server = { enable ? true }: { config, pkgs, ... }: {
networking.firewall.enable = false;
boot.kernelModules = [ "ceph" ];
environment.systemPackages = with pkgs; [
k3s
(writeShellScriptBin "kubectl" (builtins.readFile ./kubectl))
@ -25,8 +23,6 @@
agent = { serverIp, enable ? true }: { config, ... }: {
networking.firewall.enable = false;
boot.kernelModules = [ "ceph" ];
sops.secrets.k3s_token = {
format = "yaml";
sopsFile = ../../secrets/k3s.yaml;