nix-cache01: fix instance name in runner
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
This commit is contained in:
@@ -6,38 +6,40 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
services.gitea-actions-runner.instances = {
|
services.gitea-actions-runner.instances = {
|
||||||
enable = true;
|
actions1 = {
|
||||||
tokenFile = config.sops.secrets.cache-secret.path;
|
enable = true;
|
||||||
name = "actions1.home.2rjus.net";
|
tokenFile = config.sops.secrets.cache-secret.path;
|
||||||
settings = {
|
name = "actions1.home.2rjus.net";
|
||||||
log = {
|
settings = {
|
||||||
level = "info";
|
log = {
|
||||||
|
level = "info";
|
||||||
|
};
|
||||||
|
|
||||||
|
runner = {
|
||||||
|
file = ".runner";
|
||||||
|
capacity = 4;
|
||||||
|
timeout = "2h";
|
||||||
|
shutdown_timeout = "10m";
|
||||||
|
insecure = false;
|
||||||
|
fetch_timeout = "10s";
|
||||||
|
fetch_interval = "30s";
|
||||||
|
};
|
||||||
|
|
||||||
|
cache = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
container = {
|
||||||
|
privileged = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
runner = {
|
labels = [
|
||||||
file = ".runner";
|
"homelab"
|
||||||
capacity = 4;
|
"ubuntu-latest"
|
||||||
timeout = "2h";
|
];
|
||||||
shutdown_timeout = "10m";
|
|
||||||
insecure = false;
|
|
||||||
fetch_timeout = "10s";
|
|
||||||
fetch_interval = "30s";
|
|
||||||
};
|
|
||||||
|
|
||||||
cache = {
|
url = "https://git.t-juice.club";
|
||||||
enabled = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
container = {
|
|
||||||
privileged = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
labels = [
|
|
||||||
"homelab"
|
|
||||||
"ubuntu-latest"
|
|
||||||
];
|
|
||||||
|
|
||||||
url = "https://git.t-juice.club";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user