Compare commits
3 commits
b5837067a6
...
0e9d8a8348
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e9d8a8348 | ||
|
|
6d07188b38 | ||
|
|
2a9eeb19b5 |
1 changed files with 28 additions and 0 deletions
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue