kubernetes-deployments/modules/ntfy.nix

96 lines
2.1 KiB
Nix
Raw Normal View History

2024-10-28 15:05:06 +00:00
{
lib,
config,
2024-12-14 20:43:55 +00:00
utils,
2024-10-28 15:05:06 +00:00
...
}: {
2024-09-07 10:35:02 +00:00
options.ntfy.enable = lib.mkEnableOption "ntfy";
config = lib.mkIf config.ntfy.enable {
kubernetes.resources = {
deployments.ntfy.spec = {
selector.matchLabels.app = "ntfy";
strategy = {
type = "RollingUpdate";
rollingUpdate = {
maxSurge = 0;
maxUnavailable = 1;
};
};
template = {
metadata.labels.app = "ntfy";
spec = {
containers.ntfy = {
2024-12-19 20:07:30 +00:00
image = utils.mkNixNGImage "ntfy";
2024-09-07 10:35:02 +00:00
ports.web.containerPort = 80;
env.TZ.value = "Europe/Amsterdam";
volumeMounts = [
{
name = "cache";
mountPath = "/var/cache/ntfy";
}
{
name = "data";
mountPath = "/var/lib/ntfy";
}
{
name = "attachment-cache";
mountPath = "/var/cache/ntfy-attachments";
}
];
};
volumes = {
cache.persistentVolumeClaim.claimName = "cache";
attachment-cache.persistentVolumeClaim.claimName = "attachment-cache";
data.persistentVolumeClaim.claimName = "data";
};
};
};
};
persistentVolumeClaims = {
cache.spec = {
2024-10-28 15:05:06 +00:00
accessModes = ["ReadWriteOnce"];
2024-09-07 10:35:02 +00:00
resources.requests.storage = "300Mi";
};
attachment-cache.spec = {
2024-10-28 15:05:06 +00:00
accessModes = ["ReadWriteOnce"];
2024-09-07 10:35:02 +00:00
resources.requests.storage = "500Mi";
};
};
services.ntfy.spec = {
selector.app = "ntfy";
ports.web = {
port = 80;
targetPort = "web";
};
};
};
lab = {
ingresses.ntfy = {
host = "ntfy.kun.is";
service = {
name = "ntfy";
portName = "web";
};
};
longhorn.persistentVolumeClaim.data = {
volumeName = "ntfy";
storage = "300Mi";
};
};
};
}