Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ module "runner" {
name = "runner"
description = "GitHub Actions self-hosted runner"
memory = 8192
autostart = true
boot_image_url = local.fedora_image_url
extra_volumes = [
{
Expand Down Expand Up @@ -79,6 +80,7 @@ module "k3s" {
description = "k3s single-node cluster"
vcpu = 6
memory = 16384
autostart = true
storage_pool = libvirt_pool.cluster.name
boot_image_url = local.fedora_image_url
extra_volumes = [
Expand Down
Loading