feat(inbucket): Move to separate k8s namespace
This commit is contained in:
parent
af9f72b76a
commit
e9307da90d
5 changed files with 18 additions and 19 deletions
|
@ -67,6 +67,7 @@ Currently, the applications being deployed like this are:
|
||||||
- `pihole`
|
- `pihole`
|
||||||
- `immich`
|
- `immich`
|
||||||
- `attic`
|
- `attic`
|
||||||
|
- `inbucket`
|
||||||
|
|
||||||
## Known bugs
|
## Known bugs
|
||||||
|
|
||||||
|
|
|
@ -94,4 +94,6 @@
|
||||||
"${self}/kubenix-modules/immich.nix" "immich" "immich";
|
"${self}/kubenix-modules/immich.nix" "immich" "immich";
|
||||||
kubenix.attic = mkDeployScriptAndManifest
|
kubenix.attic = mkDeployScriptAndManifest
|
||||||
"${self}/kubenix-modules/attic.nix" "attic" "attic";
|
"${self}/kubenix-modules/attic.nix" "attic" "attic";
|
||||||
|
kubenix.inbucket = mkDeployScriptAndManifest
|
||||||
|
"${self}/kubenix-modules/inbucket.nix" "inbucket" "inbucket";
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
let
|
let
|
||||||
applications = [
|
applications = [
|
||||||
./inbucket.nix
|
|
||||||
./media.nix
|
./media.nix
|
||||||
./bind9
|
./bind9
|
||||||
./dnsmasq.nix
|
./dnsmasq.nix
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
pihole = { };
|
pihole = { };
|
||||||
immich = { };
|
immich = { };
|
||||||
attic = { };
|
attic = { };
|
||||||
|
inbucket = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes =
|
nodes =
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{ lib, myLib, ... }: {
|
{ myLib, ... }: {
|
||||||
kubernetes.resources = {
|
kubernetes.resources = {
|
||||||
deployments.inbucket = {
|
deployments.inbucket.spec = {
|
||||||
metadata.labels.app = "inbucket";
|
|
||||||
|
|
||||||
spec = {
|
|
||||||
selector.matchLabels.app = "inbucket";
|
selector.matchLabels.app = "inbucket";
|
||||||
|
|
||||||
template = {
|
template = {
|
||||||
|
@ -21,10 +18,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
inbucket-web.spec = {
|
web.spec = {
|
||||||
selector.app = "inbucket";
|
selector.app = "inbucket";
|
||||||
|
|
||||||
ports.web = {
|
ports.web = {
|
||||||
|
@ -33,7 +29,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
inbucket-email.spec = {
|
email.spec = {
|
||||||
type = "LoadBalancer";
|
type = "LoadBalancer";
|
||||||
loadBalancerIP = myLib.globals.inbucketIPv4;
|
loadBalancerIP = myLib.globals.inbucketIPv4;
|
||||||
selector.app = "inbucket";
|
selector.app = "inbucket";
|
||||||
|
@ -51,7 +47,7 @@
|
||||||
entrypoint = "localsecure";
|
entrypoint = "localsecure";
|
||||||
|
|
||||||
service = {
|
service = {
|
||||||
name = "inbucket-web";
|
name = "web";
|
||||||
portName = "web";
|
portName = "web";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue