96 lines
2.1 KiB
Nix
96 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
utils,
|
|
...
|
|
}: {
|
|
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 = {
|
|
nodeName = "jefke";
|
|
|
|
containers.ntfy = {
|
|
image = utils.mkNixNGImage "ntfy";
|
|
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 = {
|
|
data.hostPath = {
|
|
path = "/mnt/longhorn/persistent/volumes/ntfy";
|
|
type = "Directory";
|
|
};
|
|
|
|
cache.hostPath = {
|
|
path = "/tmp/ntfy-cache";
|
|
type = "DirectoryOrCreate";
|
|
};
|
|
|
|
attachment-cache.hostPath = {
|
|
path = "/tmp/ntfy-attachment-cache";
|
|
type = "DirectoryOrCreate";
|
|
};
|
|
};
|
|
|
|
securityContext = {
|
|
fsGroup = 407;
|
|
fsGroupChangePolicy = "Always";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
services.ntfy.spec = {
|
|
selector.app = "ntfy";
|
|
|
|
ports.web = {
|
|
port = 80;
|
|
targetPort = "web";
|
|
};
|
|
};
|
|
};
|
|
|
|
lab = {
|
|
ingresses.ntfy = {
|
|
host = "ntfy.kun.is";
|
|
|
|
service = {
|
|
name = "ntfy";
|
|
portName = "web";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|