expose cyberchef deployment on k3s publicly

remove geokunis2.nl zone
This commit is contained in:
Pim Kunis 2024-03-21 23:21:25 +01:00
parent 1662a60688
commit 476ec250ca
7 changed files with 71 additions and 83 deletions

View file

@ -25,26 +25,12 @@ in
(with spf; soft [ "include:spf.glasnet.nl" ])
];
subdomains = {
"*" = {
A = [ cfg.public.ipv4.router ];
AAAA = [ cfg.dmz.ipv6.dockerSwarm ];
};
subdomains = rec {
"*" = host cfg.public.ipv4.router cfg.dmz.ipv6.dockerSwarm;
ns = {
A = [ cfg.public.ipv4.router ];
AAAA = [ cfg.dmz.ipv6.services ];
};
ns1 = {
A = [ cfg.public.ipv4.router ];
AAAA = [ cfg.dmz.ipv6.services ];
};
ns2 = {
A = [ cfg.public.ipv4.router ];
AAAA = [ cfg.dmz.ipv6.services ];
};
ns = host cfg.public.ipv4.router cfg.dmz.ipv6.services;
ns1 = ns;
ns2 = ns;
# Override because we don't support IPv6 for Git SSH.
git = {
@ -59,10 +45,7 @@ in
};
# Override because wg is on opnsense so ipv6 differs from "cfg.dmz.ipv6.services"
wg = {
A = [ cfg.public.ipv4.router ];
AAAA = [ cfg.dmz.ipv6.router ];
};
wg = host cfg.public.ipv4.router cfg.dmz.ipv6.router;
#for SMTP2GO to be able send emails from kun.is domain
em670271 = {
@ -76,6 +59,5 @@ in
link = {
CNAME = [ "track.smtp2go.net." ];
};
};
}