Skip to content

Commit 3398477

Browse files
committed
refactor: remove default image from cluster creation
1 parent 9380986 commit 3398477

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/codeflare_sdk/cluster/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ClusterConfiguration:
4848
instascale: bool = False
4949
mcad: bool = True
5050
envs: dict = field(default_factory=dict)
51-
image: str = "quay.io/project-codeflare/ray:latest-py39-cu118"
51+
image: str = ""
5252
local_interactive: bool = False
5353
image_pull_secrets: list = field(default_factory=list)
5454
dispatch_priority: str = None

tests/unit_test_support.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def createClusterConfig():
4747
machine_types=["cpu.small", "gpu.large"],
4848
image_pull_secrets=["unit-test-pull-secret"],
4949
ingress_domain="apps.cluster.awsroute.org",
50+
image="quay.io/project-codeflare/ray:latest-py39-cu118"
5051
)
5152
return config
5253

0 commit comments

Comments
 (0)