2024-03-24 20:23:17 +00:00
|
|
|
{ self, flake-utils, kubenix, nixhelm, ... }: flake-utils.lib.eachDefaultSystem
|
2024-03-23 16:24:39 +00:00
|
|
|
(system: {
|
2024-04-07 12:07:05 +00:00
|
|
|
kubenix = kubenix.packages.${system}.default.override
|
|
|
|
{
|
|
|
|
specialArgs.flake = self;
|
2024-03-23 16:24:39 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
module = { kubenix, ... }: {
|
|
|
|
imports = [
|
|
|
|
kubenix.modules.k8s
|
|
|
|
kubenix.modules.helm
|
|
|
|
./freshrss.nix
|
|
|
|
./cyberchef.nix
|
|
|
|
./kms.nix
|
|
|
|
./inbucket.nix
|
|
|
|
./radicale.nix
|
|
|
|
./syncthing.nix
|
|
|
|
./nextcloud.nix
|
|
|
|
./pihole.nix
|
|
|
|
# ./hedgedoc.nix
|
|
|
|
./paperless-ngx.nix
|
|
|
|
./kitchenowl.nix
|
|
|
|
./forgejo.nix
|
|
|
|
./media.nix
|
|
|
|
];
|
|
|
|
kubernetes.kubeconfig = "~/.kube/config";
|
|
|
|
kubenix.project = "home";
|
2024-03-23 16:24:39 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
kubernetes = {
|
|
|
|
imports = [
|
|
|
|
./certificaterequest.yaml
|
|
|
|
./certificate.yaml
|
|
|
|
./challenge.yaml
|
|
|
|
./clusterissuer.yaml
|
|
|
|
./issuer.yaml
|
|
|
|
./order.yaml
|
|
|
|
];
|
2024-03-25 20:25:43 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
customTypes = {
|
|
|
|
# HACK: These are dummy custom types.
|
|
|
|
# This is needed, because the CRDs imported as a chart are not available as Nix modules.
|
|
|
|
# There is no nix-based validation on resources defined using these types!
|
|
|
|
# See: https://github.com/hall/kubenix/issues/34
|
|
|
|
ipAddressPool = {
|
|
|
|
attrName = "ipAddressPools";
|
|
|
|
group = "metallb.io";
|
|
|
|
version = "v1beta1";
|
|
|
|
kind = "IPAddressPool";
|
|
|
|
};
|
|
|
|
|
|
|
|
l2Advertisement = {
|
|
|
|
attrName = "l2Advertisements";
|
|
|
|
group = "metallb.io";
|
|
|
|
version = "v1beta1";
|
|
|
|
kind = "L2Advertisement";
|
|
|
|
};
|
2024-03-27 22:11:34 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
helmChartConfig = {
|
|
|
|
attrName = "helmChartConfigs";
|
|
|
|
group = "helm.cattle.io";
|
|
|
|
version = "v1";
|
|
|
|
kind = "HelmChartConfig";
|
|
|
|
};
|
|
|
|
|
|
|
|
clusterIssuer = {
|
|
|
|
attrName = "clusterIssuers";
|
|
|
|
group = "cert-manager.io";
|
|
|
|
version = "v1";
|
|
|
|
kind = "ClusterIssuer";
|
|
|
|
};
|
2024-03-27 22:11:34 +00:00
|
|
|
};
|
2024-03-25 20:25:43 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
# TODO: These resources should probably exist within the kube-system namespace.
|
|
|
|
resources = {
|
|
|
|
ipAddressPools.main.spec.addresses = [ "192.168.30.128-192.168.30.200" ];
|
|
|
|
l2Advertisements.main.metadata = { };
|
|
|
|
|
|
|
|
# Override Traefik's service with a static load balancer IP.
|
|
|
|
helmChartConfigs.traefik = {
|
|
|
|
metadata.namespace = "kube-system";
|
2024-03-27 22:11:34 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
spec.valuesContent = ''
|
|
|
|
service:
|
|
|
|
spec:
|
|
|
|
loadBalancerIP: "192.168.30.128"
|
|
|
|
'';
|
|
|
|
};
|
2024-03-27 22:11:34 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
clusterIssuers.letsencrypt = {
|
|
|
|
metadata.namespace = "kube-system";
|
|
|
|
|
|
|
|
spec.acme = {
|
|
|
|
server = "https://acme-v02.api.letsencrypt.org/directory";
|
|
|
|
email = "pim@kunis.nl";
|
|
|
|
privateKeySecretRef.name = "letsencrypt-private-key";
|
|
|
|
solvers = [{
|
|
|
|
selector = { };
|
|
|
|
http01.ingress.class = "traefik";
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
};
|
2024-03-27 22:11:34 +00:00
|
|
|
};
|
2024-03-24 20:23:17 +00:00
|
|
|
|
2024-04-07 12:07:05 +00:00
|
|
|
|
|
|
|
# TODO: These resources should probably exist within the kube-system namespace.
|
|
|
|
helm.releases = {
|
|
|
|
metallb = {
|
|
|
|
chart = nixhelm.chartsDerivations.${system}.metallb.metallb;
|
|
|
|
includeCRDs = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
cert-manager = {
|
|
|
|
chart = nixhelm.chartsDerivations.${system}.jetstack.cert-manager;
|
|
|
|
includeCRDs = false;
|
|
|
|
};
|
|
|
|
};
|
2024-03-23 16:24:39 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|