This commit is contained in:
Pim Kunis 2024-09-07 12:35:02 +02:00
commit cdec5a64aa
44 changed files with 9802 additions and 0 deletions

40
modules/cyberchef.nix Normal file
View file

@ -0,0 +1,40 @@
{ config, lib, globals, ... }: {
options.cyberchef.enable = lib.mkEnableOption "cyberchef";
config = lib.mkIf config.cyberchef.enable {
kubernetes.resources = {
deployments.cyberchef.spec = {
replicas = 3;
selector.matchLabels.app = "cyberchef";
template = {
metadata.labels.app = "cyberchef";
spec.containers.cyberchef = {
image = globals.images.cyberchef;
imagePullPolicy = "Always";
ports.web.containerPort = 8000;
};
};
};
services.cyberchef.spec = {
selector.app = "cyberchef";
ports.web = {
port = 80;
targetPort = "web";
};
};
};
lab.ingresses.cyberchef = {
host = "cyberchef.kun.is";
service = {
name = "cyberchef";
portName = "web";
};
};
};
}