Skip to content

Commit

Permalink
Allow adding OCI instances to pool (#1250)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvstme committed May 27, 2024
1 parent c322ca2 commit a99bc28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dstack/_internal/core/backends/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from dstack._internal.core.models.backends.base import BackendType
from dstack._internal.settings import FeatureFlags

BACKENDS_WITH_MULTINODE_SUPPORT = [
BackendType.AWS,
Expand All @@ -14,6 +15,7 @@
BackendType.DATACRUNCH,
BackendType.GCP,
BackendType.LAMBDA,
*([BackendType.OCI] if FeatureFlags.OCI_BACKEND else []),
BackendType.TENSORDOCK,
]
BACKENDS_WITH_PRIVATE_GATEWAY_SUPPORT = [BackendType.AWS]

0 comments on commit a99bc28

Please sign in to comment.