added base config
This commit is contained in:
parent
2a9eeb19b5
commit
6d07188b38
1 changed files with 14 additions and 0 deletions
|
|
@ -62,3 +62,17 @@ resource "incus_instance" "forgejo-runner-tofu" {
|
||||||
"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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Reference in a new issue