Compare commits

...

3 commits

Author SHA1 Message Date
Jermeiah S
0e9d8a8348
up core count on forgejo
All checks were successful
/ test (push) Successful in 1s
2025-06-20 11:40:11 -04:00
Jermeiah S
6d07188b38
added base config 2025-06-19 18:19:57 -04:00
Jermeiah S
2a9eeb19b5
added forgejo runner 2025-06-19 16:57:31 -04:00

View file

@ -48,3 +48,31 @@ resource "incus_instance" "observer-tofu" {
}
}
}
resource "incus_instance" "forgejo-runner-tofu" {
name = "forgejo-runner-tofu"
image = "images:nixos/25.05/amd64"
profiles = [
incus_profile.d.name
]
config = {
"limits.cpu" = 6
"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"
}
}