From 6296cd142d95f12bbff20dcb0d52515dae44e2a7 Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Tue, 14 May 2024 23:17:25 +0200 Subject: [PATCH] chore(deploy.py): use one agent for lower resource usage (#1902) --- deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index 9a2dc0bf59..6cd6a52b47 100755 --- a/deploy.py +++ b/deploy.py @@ -98,7 +98,7 @@ def handle_cluster(): if cluster_exists(CLUSTER_NAME): print(f"Cluster '{CLUSTER_NAME}' already exists.") else: - run_command(f"k3d cluster create {CLUSTER_NAME} {' '.join(PORTS)} --agents 2", + run_command(f"k3d cluster create {CLUSTER_NAME} {' '.join(PORTS)} --agents 1", shell=True) install_secret_generator() install_reloader()