infra/homelab/woodpecker.nix

33 lines
573 B
Nix
Raw Normal View History

2024-05-16 20:34:02 +01:00
{
lib,
config,
kubenix,
...
}: {
kubernetes.helm.releases.woodpecker = {
namespace = "woodpecker";
chart = kubenix.lib.helm.fetch {
repo = "https://woodpecker-ci.org/";
chart = "woodpecker";
version = "1.3.0";
sha256 = "";
};
values = {
server.ingress = {
enabled = true;
hosts = [
{
host = "ci.gmem.ca";
paths = [ { path = "/"; } ];
}
];
tls = [
{
hosts = ["ci.gmem.ca"];
}
];
};
};
};
}