added ek2024
This commit is contained in:
parent
c7ab342994
commit
bf240ed931
2 changed files with 23 additions and 0 deletions
|
@ -26,6 +26,7 @@ in
|
||||||
./base.nix
|
./base.nix
|
||||||
./longhorn.nix
|
./longhorn.nix
|
||||||
./esrom.nix
|
./esrom.nix
|
||||||
|
./ek2024.nix
|
||||||
./metallb.nix
|
./metallb.nix
|
||||||
./cert-manager.nix
|
./cert-manager.nix
|
||||||
./custom/ingress.nix
|
./custom/ingress.nix
|
||||||
|
|
22
kubenix-modules/ek2024.nix
Normal file
22
kubenix-modules/ek2024.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
kubernetes.resources = {
|
||||||
|
services.ek2024.spec = {
|
||||||
|
type = "ExternalName";
|
||||||
|
externalName = "ek2024.dmz";
|
||||||
|
|
||||||
|
ports.web = {
|
||||||
|
port = 80;
|
||||||
|
targetPort = 80;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
lab.ingresses.ek2024 = {
|
||||||
|
host = "ek2024.kun.is";
|
||||||
|
|
||||||
|
service = {
|
||||||
|
name = "ek2024";
|
||||||
|
portName = "web";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue