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