We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd5d9c commit e9fb58aCopy full SHA for e9fb58a
inspector/inspector.py
@@ -34,9 +34,11 @@
34
datefmt="%Y-%m-%d %H:%M:%S"
35
)
36
lib.logging = logging
37
-# We can't (yet) start these
38
EXCLUDE_INSTANCES: list[tuple[str, str]] = [
39
- ("aws", "t3.nano"), # the currently used software stack doesn't fit onto this instance
+ # too small memory instances
+ ("aws", "t3.nano"),
40
+ ("gcp", "f1-micro"),
41
+ # we can't (yet) start these
42
("aws", "f2.48xlarge"),
43
("aws", "p4de.24xlarge"),
44
("aws", "p5.4xlarge"),
0 commit comments