You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are over 270 different instance types available on EC2 which can make the process of selecting appropriate instance types difficult. Instance Selector helps you select compatible instance types for your application to run on. The command line interface can be passed resource criteria like vcpus, memory, network performance, and much more and then return the available, matching instance types.
28
+
There are over 800 different instance types available on EC2 which can make the process of selecting appropriate instance types difficult. Instance Selector helps you select compatible instance types for your application to run on. The command line interface can be passed resource criteria like vcpus, memory, network performance, and much more and then return the available, matching instance types.
29
29
30
30
If you are using spot instances to save on costs, it is a best practice to use multiple instances types within your auto-scaling group (ASG) to ensure your application doesn't experience downtime due to one instance type being interrupted. Instance Selector will help to find a set of instance types that your application can run on.
31
31
@@ -313,7 +313,7 @@ Filter Flags:
313
313
-z, --availability-zones strings Availability zones or zone ids to check EC2 capacity offered in specific AZs
314
314
--baremetal Bare Metal instance types (.metal instances)
315
315
-b, --burst-support Burstable instance types
316
-
-a, --cpu-architecture string CPU architecture [x86_64/amd64, x86_64_mac, i386, or arm64]
316
+
-a, --cpu-architecture string CPU architecture [x86_64, amd64, x86_64_mac, i386, or arm64]
317
317
--cpu-manufacturer string CPU manufacturer [amd, intel, aws]
318
318
--current-generation Current generation instance types (explicitly set this to false to not return current generation instance types)
319
319
--dedicated-hosts Dedicated Hosts supported
@@ -334,6 +334,9 @@ Filter Flags:
334
334
-e, --ena-support Instance types where ENA is supported or required
335
335
-f, --fpga-support FPGA instance types
336
336
--free-tier Free Tier supported
337
+
--generation int Generation of the instance type (i.e. c7i.xlarge is 7) (sets --generation-min and -max to the same value)
338
+
--generation-max int Maximum Generation of the instance type (i.e. c7i.xlarge is 7) If --generation-min is not specified, the lower bound will be 0
339
+
--generation-min int Minimum Generation of the instance type (i.e. c7i.xlarge is 7) If --generation-max is not specified, the upper bound will be infinity
337
340
--gpu-manufacturer string GPU Manufacturer name (Example: NVIDIA)
338
341
--gpu-memory-total string Number of GPUs' total memory (Example: 4 GiB) (sets --gpu-memory-total-min and -max to the same value)
339
342
--gpu-memory-total-max string Maximum Number of GPUs' total memory (Example: 4 GiB) If --gpu-memory-total-min is not specified, the lower bound will be 0
@@ -385,7 +388,8 @@ Suite Flags:
385
388
386
389
Global Flags:
387
390
--cache-dir string Directory to save the pricing and instance type caches (default "~/.ec2-instance-selector/")
388
-
--cache-ttl int Cache TTLs in hours for pricing and instance type caches. Setting the cache to 0 will turn off caching and cleanup any on-disk caches. (default 168)
391
+
--cache-ttl int Cache TTLs in hours for pricing and instance type caches. Setting the cache to 0 will turn off caching and cleanup any on-disk caches.
392
+
--debug Debug - prints debug log messages
389
393
-h, --help Help
390
394
--max-results int The maximum number of instance types that match your criteria to return (default 20)
391
395
-o, --output string Specify the output format (table, table-wide, one-line, interactive)
0 commit comments