nixos-servers/kubenix-modules/atticd.nix

110 lines
3 KiB
Nix
Raw Normal View History

2024-04-27 18:53:32 +00:00
{ pkgs, ... }: {
kubernetes.resources =
let
atticdSettings = {
database.url = "ref+sops://secrets/sops.yaml#atticd/databaseURL";
2024-04-26 21:32:31 +00:00
2024-04-27 18:53:32 +00:00
storage = {
type = "local";
path = "/var/lib/atticd/storage";
};
listen = "[::]:8080";
# Data chunking
#
# Warning: If you change any of the values here, it will be
# difficult to reuse existing chunks for newly-uploaded NARs
# since the cutpoints will be different. As a result, the
# deduplication ratio will suffer for a while after the change.
chunking = {
# The minimum NAR size to trigger chunking
#
# If 0, chunking is disabled entirely for newly-uploaded NARs.
# If 1, all NARs are chunked.
nar-size-threshold = 64 * 1024; # 64 KiB
# The preferred minimum size of a chunk, in bytes
min-size = 16 * 1024; # 16 KiB
# The preferred average size of a chunk, in bytes
avg-size = 64 * 1024; # 64 KiB
# The preferred maximum size of a chunk, in bytes
max-size = 256 * 1024; # 256 KiB
};
};
generatedConfig = (pkgs.formats.toml { }).generate "atticd.toml" atticdSettings;
in
{
configMaps = {
atticd-env.data.ATTIC_SERVER_TOKEN_HS256_SECRET_BASE64 = "ref+sops://secrets/sops.yaml#atticd/jwtToken";
atticd-config.data.config = builtins.readFile generatedConfig;
};
2024-04-26 21:32:31 +00:00
2024-04-27 18:53:32 +00:00
deployments.atticd = {
metadata.labels.app = "atticd";
2024-04-26 21:32:31 +00:00
2024-04-27 18:53:32 +00:00
spec = {
selector.matchLabels.app = "atticd";
template = {
metadata.labels.app = "atticd";
spec = {
containers.atticd = {
image = "git.kun.is/home/atticd:fd910d91c2143295e959d2c903e9ea25cf94ba27";
envFrom = [{ configMapRef.name = "atticd-env"; }];
ports.web.containerPort = 8080;
args = [ "-f" "/etc/atticd/config.toml" ];
volumeMounts = [
{
name = "data";
mountPath = "/var/lib/atticd/storage";
}
{
name = "config";
mountPath = "/etc/atticd/config.toml";
subPath = "config";
}
];
};
volumes = {
2024-05-23 20:52:05 +00:00
data.persistentVolumeClaim.claimName = "attic";
2024-04-27 18:53:32 +00:00
config.configMap.name = "atticd-config";
};
2024-05-23 20:52:05 +00:00
securityContext = {
fsGroup = 0;
fsGroupChangePolicy = "OnRootMismatch";
};
2024-04-26 21:32:31 +00:00
};
};
};
};
2024-04-27 18:53:32 +00:00
services.atticd.spec = {
selector.app = "atticd";
2024-04-26 21:32:31 +00:00
2024-04-27 18:53:32 +00:00
ports.web = {
port = 80;
targetPort = "web";
};
2024-04-26 21:32:31 +00:00
};
};
lab = {
ingresses.atticd = {
host = "attic.kun.is";
entrypoint = "localsecure";
2024-04-26 21:32:31 +00:00
service = {
name = "atticd";
portName = "web";
};
};
};
}