Skip to content

Commit

Permalink
chore(deploy.py): use one agent for lower resource usage (#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer authored May 14, 2024
1 parent fa9b104 commit 6296cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 6296cd1

Please sign in to comment.