#17 Remove all manifests from nixosSystemConfiguration

I think we want to manage k8s resources separately from the infrastructure it runs on
This commit is contained in:
Joey Hafner 2024-10-25 14:12:23 -07:00
parent 04f22ed5fb
commit 3328571be6
No known key found for this signature in database

View File

@ -32,7 +32,8 @@
]; ];
clusterInit = (hostConf.name == "bard"); clusterInit = (hostConf.name == "bard");
serverAddr = (if hostConf.name == "bard" then "" else "https://192.168.1.31:6443"); serverAddr = (if hostConf.name == "bard" then "" else "https://192.168.1.31:6443");
manifests = { longhorn-nixos-path.source = ./manifests/longhorn-nixos-path.yaml; }; manifests = { }; # We are going to manage k8s resources separately from
# the infrastructure config
}; };
services.openiscsi = { services.openiscsi = {
enable = false; enable = false;