nix-cache: remove unused Gitea Actions runner
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m23s
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m23s
The actions runner on nix-cache01 was never actively used. Removing it before migrating to nix-cache02. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -3,6 +3,5 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
../../services/nix-cache
|
../../services/nix-cache
|
||||||
../../services/actions-runner
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,57 +0,0 @@
|
|||||||
{ pkgs, config, ... }:
|
|
||||||
{
|
|
||||||
vault.secrets.actions-token = {
|
|
||||||
secretPath = "hosts/nix-cache01/actions-token";
|
|
||||||
extractKey = "token";
|
|
||||||
outputDir = "/run/secrets/actions-token-1";
|
|
||||||
services = [ "gitea-runner-actions1" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
virtualisation.podman = {
|
|
||||||
enable = true;
|
|
||||||
dockerCompat = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.gitea-actions-runner.instances = {
|
|
||||||
actions1 = {
|
|
||||||
enable = true;
|
|
||||||
tokenFile = "/run/secrets/actions-token-1";
|
|
||||||
name = "actions1.home.2rjus.net";
|
|
||||||
settings = {
|
|
||||||
log = {
|
|
||||||
level = "debug";
|
|
||||||
};
|
|
||||||
|
|
||||||
runner = {
|
|
||||||
file = ".runner";
|
|
||||||
capacity = 4;
|
|
||||||
timeout = "2h";
|
|
||||||
shutdown_timeout = "10m";
|
|
||||||
insecure = false;
|
|
||||||
fetch_timeout = "10s";
|
|
||||||
fetch_interval = "30s";
|
|
||||||
};
|
|
||||||
|
|
||||||
cache = {
|
|
||||||
enabled = true;
|
|
||||||
dir = "/var/cache/gitea-actions1";
|
|
||||||
};
|
|
||||||
|
|
||||||
container = {
|
|
||||||
privileged = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
labels =
|
|
||||||
builtins.map (n: "${n}:docker://gitea/runner-images:${n}") [
|
|
||||||
"ubuntu-latest"
|
|
||||||
"ubuntu-latest-slim"
|
|
||||||
"ubuntu-latest-full"
|
|
||||||
]
|
|
||||||
++ [
|
|
||||||
"homelab"
|
|
||||||
];
|
|
||||||
|
|
||||||
url = "https://git.t-juice.club";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -81,12 +81,6 @@ locals {
|
|||||||
data = { key = var.cache_signing_key }
|
data = { key = var.cache_signing_key }
|
||||||
}
|
}
|
||||||
|
|
||||||
# Gitea Actions runner token
|
|
||||||
"hosts/nix-cache01/actions-token" = {
|
|
||||||
auto_generate = false
|
|
||||||
data = { token = var.actions_token_1 }
|
|
||||||
}
|
|
||||||
|
|
||||||
# Homelab-deploy NKeys
|
# Homelab-deploy NKeys
|
||||||
"shared/homelab-deploy/listener-nkey" = {
|
"shared/homelab-deploy/listener-nkey" = {
|
||||||
auto_generate = false
|
auto_generate = false
|
||||||
|
|||||||
@@ -46,12 +46,6 @@ variable "cache_signing_key" {
|
|||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "actions_token_1" {
|
|
||||||
description = "Gitea Actions runner token"
|
|
||||||
type = string
|
|
||||||
sensitive = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "homelab_deploy_listener_nkey" {
|
variable "homelab_deploy_listener_nkey" {
|
||||||
description = "NKey seed for homelab-deploy listeners"
|
description = "NKey seed for homelab-deploy listeners"
|
||||||
type = string
|
type = string
|
||||||
|
|||||||
Reference in New Issue
Block a user