Move Radicale off Longhorn

This commit is contained in:
Pim Kunis 2025-05-25 17:22:05 +02:00
parent d9a48c2b3e
commit 83cd881e54
2 changed files with 6 additions and 7 deletions

View file

@ -87,7 +87,6 @@
lab = {
longhorn.persistentVolume = {
radicale.storage = "200Mi";
atuin-db.storage = "300Mi";
nextcloud.storage = "50Gi";
nextcloud-db.storage = "400Mi";

View file

@ -25,6 +25,8 @@
metadata.labels.app = "radicale";
spec = {
nodeName = "jefke";
containers.radicale = {
image = utils.mkNixNGImage "radicale";
ports.web.containerPort = 5232;
@ -38,7 +40,10 @@
];
};
volumes.data.persistentVolumeClaim.claimName = "data";
volumes.data.hostPath = {
path = "/mnt/longhorn/persistent/volumes/radicale";
type = "Directory";
};
};
};
};
@ -60,11 +65,6 @@
host = "radicale";
service.name = "server";
};
longhorn.persistentVolumeClaim.data = {
volumeName = "radicale";
storage = "200Mi";
};
};
};
}