Pim Kunis
afa0bd023e
Make nextcloud always go to nodes with fast storage Don't mount nextcloud on syncthing pod
17 lines
269 B
Nix
17 lines
269 B
Nix
{
|
|
machines.jefke = {
|
|
arch = "x86_64-linux";
|
|
kubernetesNodeLabels.storageType = "fast";
|
|
|
|
nixosModule.lab = {
|
|
storage = {
|
|
kubernetesNode = true;
|
|
};
|
|
|
|
k3s = {
|
|
enable = true;
|
|
clusterInit = true;
|
|
};
|
|
};
|
|
};
|
|
}
|