Woodpecker config
Some checks failed
--> 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
Lint / lint (push) Successful in 25s
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Gabriel Simmer 2024-05-16 21:36:48 +01:00
parent 84592f4d30
commit 9904a81806
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ

View file

@ -10,22 +10,29 @@
repo = "https://woodpecker-ci.org/";
chart = "woodpecker";
version = "1.3.0";
sha256 = "";
sha256 = "sha256-BGMZJdXMVVBKQHWQ7GgSa8AmFh6JuVO0dvolxqF9k4I=";
};
values = {
server.ingress = {
enabled = true;
hosts = [
{
host = "ci.gmem.ca";
paths = [ { path = "/"; } ];
}
];
tls = [
{
hosts = ["ci.gmem.ca"];
}
];
server = {
env = {
WOODPECKER_ADMIN = "woodpecker,admin,arch";
WOODPECKER_HOST = "https://ci.gmem.ca";
WOODPECKER_DATABASE_DRIVER = "postgres";
};
ingress = {
enabled = true;
hosts = [
{
host = "ci.gmem.ca";
paths = [ { path = "/"; } ];
}
];
tls = [
{
hosts = ["ci.gmem.ca"];
}
];
};
};
};
};