Compare commits

..

1 commit

Author SHA1 Message Date
Jermeiah S
b5837067a6
added forgejo runner
All checks were successful
/ test (push) Successful in 1s
2025-06-19 16:56:31 -04:00

View file

@ -52,27 +52,13 @@ resource "incus_instance" "observer-tofu" {
resource "incus_instance" "forgejo-runner-tofu" { resource "incus_instance" "forgejo-runner-tofu" {
name = "forgejo-runner-tofu" name = "observer-tofu"
image = "images:nixos/25.05/amd64" image = "images:nixos/25.05/amd64"
profiles = [ profiles = [
incus_profile.d.name incus_profile.d.name
] ]
config = { config = {
"limits.cpu" = 6 "limits.cpu" = 4
"limits.memory" = "8GiB" "limits.memory" = "8GiB"
} }
} }
resource "incus_instance" "base-tofu" {
name = "base-tofu"
image = "images:nixos/25.05/amd64"
profiles = [
incus_profile.d.name
]
config = {
"limits.cpu" = 1
"limits.memory" = "1GiB"
}
}