Remove Minecraft
This commit is contained in:
parent
2ec36784dd
commit
a0036d2501
6 changed files with 0 additions and 70 deletions
|
@ -54,7 +54,6 @@
|
|||
inbucket = {};
|
||||
dns = {};
|
||||
media = {};
|
||||
minecraft = {};
|
||||
tailscale = {};
|
||||
ntfy = {};
|
||||
authentik = {};
|
||||
|
@ -87,7 +86,6 @@
|
|||
|
||||
lab = {
|
||||
longhorn.persistentVolume = {
|
||||
minecraft.storage = "1Gi";
|
||||
authentik-db.storage = "10Gi";
|
||||
authentik-redis.storage = "5Gi";
|
||||
mealie.storage = "3Gi";
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
./traefik.nix
|
||||
./tailscale.nix
|
||||
./ntfy.nix
|
||||
./minecraft.nix
|
||||
./authentik.nix
|
||||
./mealie.nix
|
||||
];
|
||||
|
|
|
@ -1,59 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
globals,
|
||||
...
|
||||
}: {
|
||||
options.minecraft.enable = lib.mkEnableOption "minecraft";
|
||||
|
||||
config = lib.mkIf config.minecraft.enable {
|
||||
kubernetes.resources = {
|
||||
deployments.minecraft.spec = {
|
||||
selector.matchLabels.app = "minecraft";
|
||||
|
||||
template = {
|
||||
metadata.labels.app = "minecraft";
|
||||
|
||||
spec = {
|
||||
volumes.data.persistentVolumeClaim.claimName = "data";
|
||||
|
||||
containers.minecraft = {
|
||||
image = globals.images.minecraft;
|
||||
ports.minecraft.containerPort = 25565;
|
||||
|
||||
env.EULA.value = "TRUE";
|
||||
|
||||
volumeMounts = [
|
||||
{
|
||||
name = "data";
|
||||
mountPath = "/data";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
securityContext = {
|
||||
fsGroup = 1000;
|
||||
fsGroupChangePolicy = "OnRootMismatch";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.minecraft.spec = {
|
||||
type = "LoadBalancer";
|
||||
loadBalancerIP = globals.minecraftIPv4;
|
||||
selector.app = "minecraft";
|
||||
|
||||
ports.minecraft = {
|
||||
port = 25565;
|
||||
targetPort = "minecraft";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
lab.longhorn.persistentVolumeClaim.data = {
|
||||
volumeName = "minecraft";
|
||||
storage = "1Gi";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue