From 2b02f2a46f8f577078f805c42c9db28c71e4cd1a Mon Sep 17 00:00:00 2001 From: Tamas Kiss Date: Tue, 27 Sep 2022 17:57:15 +0200 Subject: [PATCH] increase worker volume size and count --- worker.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worker.tf b/worker.tf index 9504eca..1411f57 100644 --- a/worker.tf +++ b/worker.tf @@ -1,7 +1,7 @@ locals { pool_name = "kubernetes-workers" worker_id_start = 80 - worker_count = 1 + worker_count = 2 } resource "libvirt_pool" "kubernetes_workers" { @@ -61,7 +61,7 @@ module "worker" { create_root_storage_pool = false root_storage_pool = local.pool_name - root_storage_volume_size_gb = 8 + root_storage_volume_size_gb = 16 base_image_pool = "base-images" base_image_volume = "ubuntu-jammy-20220516-k8s-v1.23.5-20220517" @@ -98,4 +98,4 @@ module "worker" { EOM -} \ No newline at end of file +}