Add Gitea act-runner and fix ddclient deployment

- gitea-runner.tf: Secret for Gitea runner registration token
- apps/gitea-runner.yaml: Gitea act-runner deployment (init container
  registers with Gitea, main container runs daemon) — serves all Gitea
  Actions CI jobs on self-hosted,linux,x64,legion labels
- variables.tf: Add gitea_runner_token variable
- ddclient.tf: Switch to official ghcr.io/ddclient/ddclient image,
  remove linuxserver wrapper that was exhausting inotify instances
This commit is contained in:
Will Anderson
2026-03-24 12:51:22 -05:00
parent 087c5a79f4
commit 5bd7702874
4 changed files with 85 additions and 12 deletions
+6
View File
@@ -135,3 +135,9 @@ variable "gitea_api_token" {
type = string
sensitive = true
}
variable "gitea_runner_token" {
description = "Gitea act-runner registration token"
type = string
sensitive = true
}