From 3a5953f0fafb4b626546b37b21c2c5b51eeaa815 Mon Sep 17 00:00:00 2001 From: Dennis Marttinen Date: Thu, 5 Dec 2024 16:26:29 +0200 Subject: [PATCH] feat: switch from `standard.large` to `standard.xlarge` in cPouta The latter has 16 GiB of RAM compared to the former's 8 GiB, which is needed for scaling to 1000+ VK instances in the controller. Signed-off-by: Dennis Marttinen --- work/cpouta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/work/cpouta b/work/cpouta index 7b83aa8..36bd54c 100755 --- a/work/cpouta +++ b/work/cpouta @@ -137,7 +137,7 @@ set -o pipefail talosctl config merge talosconfig # Create VMs - openstack server create --flavor standard.large --nic port-id="$_machine" --image talos --user-data controlplane.yaml "$_machine" + openstack server create --flavor standard.xlarge --nic port-id="$_machine" --image talos --user-data controlplane.yaml "$_machine" # Wait for the cluster to become healthy while ! talosctl health; do sleep 1; done