infra/homelab/woodpecker.nix
Gabriel Simmer 565db50631
All checks were successful
--> Linted: GITLEAKS No errors were found in the linting process
--> Linted: JSCPD No errors were found in the linting process
--> Linted: NATURAL_LANGUAGE No errors were found in the linting process
--> Linted: YAML No errors were found in the linting process
Lint / lint (push) Successful in 28s
ci/woodpecker/push/woodpecker Pipeline was successful
Experimenting with Woodpecker CI
2024-05-16 20:34:02 +01:00

33 lines
573 B
Nix

{
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"];
}
];
};
};
};
}