From c6ee0599b0558b4cc6f4edfd6ced597452237505 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 11 Jul 2025 20:31:04 +0000 Subject: [PATCH] Drop down our droplet size by half. It works, so, that's great. --- README.md | 2 ++ digitalocean/create-droplet.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f1b725..b8dfd10 100644 --- a/README.md +++ b/README.md @@ -88,3 +88,5 @@ I/O size (minimum/optimal): 512 bytes / 512 bytes ``` Next we'll try something at half that size + +`s-1vcpu-2gb` works fine. We won't bother going smaller at this point. diff --git a/digitalocean/create-droplet.sh b/digitalocean/create-droplet.sh index 2ac1010..e596845 100644 --- a/digitalocean/create-droplet.sh +++ b/digitalocean/create-droplet.sh @@ -4,7 +4,7 @@ doctl compute droplet create \ --image debian-12-x64 \ --project-id ce2159e8-02f5-4169-8943-f34ccf812d23 \ --region sfo3 \ - --size s-2vcpu-4gb \ + --size s-1vcpu-2gb \ --ssh-keys 48777034,46710608 \ --tag-name nixos \ --wait