From e4131d3c2ad1398a5e61139d76472e99ba6538fd Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Thu, 25 Jun 2026 21:12:56 +0800 Subject: [PATCH] fix(ai-workspace): downsize plan to vc2-2c-4gb to clear monthly spend limit Account hit Vultr monthly fee cap; vc2-4c-8gb (x2=$96/mo) exceeded the limit. Reduce to vc2-2c-4gb (x2=$48/mo) for verification run; restore to 4c-8gb after limit increase. Co-Authored-By: Claude Sonnet 4.6 --- .../vultr-vps/config/resources/ai-workspace-hosts.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform-hcl-standard/vultr-vps/config/resources/ai-workspace-hosts.yaml b/terraform-hcl-standard/vultr-vps/config/resources/ai-workspace-hosts.yaml index 694d8d29..0fb74dd5 100644 --- a/terraform-hcl-standard/vultr-vps/config/resources/ai-workspace-hosts.yaml +++ b/terraform-hcl-standard/vultr-vps/config/resources/ai-workspace-hosts.yaml @@ -23,7 +23,7 @@ ssh_keys: hosts: - name: ai-debian13 os_name: "Debian 13 x64 (trixie)" # Vultr 实际镜像名(含 trixie);也可写 os_id: 2625 - plan: vc2-4c-8gb # 4 核 8G + plan: vc2-2c-4gb # 2 核 4G(临时缩配,验证后改回 vc2-4c-8gb) backups: false # 不开备份 enable_ipv6: true # 公网 IPv4 默认分配,这里附带开 IPv6 ansible_user: root @@ -36,7 +36,7 @@ hosts: - name: ai-ubuntu2604 os_name: "Ubuntu 26.04 LTS x64" - plan: vc2-4c-8gb + plan: vc2-2c-4gb backups: false enable_ipv6: true ansible_user: root