Move mealie off longhorn

This commit is contained in:
Pim Kunis 2025-05-28 22:22:25 +02:00
parent a0036d2501
commit a0cca7f78b
2 changed files with 6 additions and 7 deletions

View file

@ -88,7 +88,6 @@
longhorn.persistentVolume = {
authentik-db.storage = "10Gi";
authentik-redis.storage = "5Gi";
mealie.storage = "3Gi";
};
tailscaleIngresses.tailscale-longhorn = {

View file

@ -24,6 +24,8 @@
metadata.labels.app = "mealie";
spec = {
nodeName = "atlas";
containers.mealie = {
image = utils.mkNixNGImage "mealie";
ports.web.containerPort = 8000;
@ -42,7 +44,10 @@
];
};
volumes.mealie.persistentVolumeClaim.claimName = "mealie";
volumes.mealie.hostPath = {
path = "/mnt/longhorn/persistent/volumes/mealie";
type = "Directory";
};
};
};
};
@ -66,11 +71,6 @@
portName = "web";
};
};
longhorn.persistentVolumeClaim.mealie = {
volumeName = "mealie";
storage = "3Gi";
};
};
};
}