From 4d0025199478ce20018c8eaec5c52c067552f0f2 Mon Sep 17 00:00:00 2001 From: Jermeiah S Date: Thu, 19 Jun 2025 14:59:49 -0400 Subject: [PATCH] downscale observer server --- incus/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/incus/main.tf b/incus/main.tf index 07903f5..f465487 100644 --- a/incus/main.tf +++ b/incus/main.tf @@ -34,17 +34,17 @@ resource "incus_instance" "observer-tofu" { incus_profile.d.name ] config = { - "limits.cpu" = 2 - "limits.memory" = "4GiB" + "limits.cpu" = 1 + "limits.memory" = "1GiB" } device { name = "http" type = "proxy" properties = { # Listen on Incus host's TCP port 80 - listen = "tcp:0.0.0.0:8888" + listen = "tcp:0.0.0.0:8889" # And connect to the instance's TCP port 80 - connect = "tcp:127.0.0.1:80" + connect = "tcp:127.0.0.1:3001" } } }