Hello,
Sometimes I need to just scale a machine, do a workload and scale to 0.
Normally I do that starting with:
fly scale count 1 --yes
I noted this scales from the most basic vm:
fly scale show -a microlink-next
Groups
NAME COUNT KIND CPUS MEMORY REGIONS
app 2 shared 1 256 MB mad(2)
so still I need to run flyctl scale
to scale it to the right size:
flyctl scale vm shared-cpu-2x --memory=1024
The question: is it a way to perform
fly scale count 1 --yes &&
fly scale vm shared-cpu-2x --memory=1024
in a single action? my suggestion:
fly scale count 1 --vm=shared-cpu-2x --memory=1024 --yes