Skip to content

Commit b325fab

Browse files
sutaakaropenshift-merge-robot
authored andcommitted
Adjust SDK version, fix TestMNISTRayClusterSDK
1 parent d987823 commit b325fab

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ KUBERAY_VERSION ?= v0.5.0
3030
RAY_VERSION ?= 2.5.0
3131

3232
# CODEFLARE_SDK_VERSION defines the default version of the CodeFlare SDK
33-
CODEFLARE_SDK_VERSION ?= 0.4.4
33+
CODEFLARE_SDK_VERSION ?= 0.6.1
3434

3535
# OPERATORS_REPO_ORG points to GitHub repository organization where bundle PR is opened against
3636
# OPERATORS_REPO_FORK_ORG points to GitHub repository fork organization where bundle build is pushed to

test/e2e/mnist_raycluster_sdk.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@
1212
cluster = Cluster(ClusterConfiguration(
1313
name='mnist',
1414
namespace=namespace,
15-
min_worker=1,
16-
max_worker=1,
15+
num_workers=1,
1716
min_cpus='500m',
1817
max_cpus=1,
1918
min_memory=0.5,
2019
max_memory=1,
21-
gpu=0,
20+
num_gpus=0,
2221
instascale=False,
2322
))
2423

test/e2e/mnist_raycluster_sdk_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ func TestMNISTRayClusterSDK(t *testing.T) {
4545
test.T().Skip("Requires https://github.com/project-codeflare/codeflare-sdk/pull/146")
4646
}
4747

48+
// Currently blocked by https://github.com/project-codeflare/codeflare-sdk/pull/271 , remove the skip once SDK with the PR is released
49+
test.T().Skip("Requires https://github.com/project-codeflare/codeflare-sdk/pull/271")
50+
4851
// Create a namespace
4952
namespace := test.NewTestNamespace()
5053

test/support/defaults.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package support
55
// ***********************
66

77
const (
8-
CodeFlareSDKVersion = "0.4.4"
8+
CodeFlareSDKVersion = "0.6.1"
99
RayVersion = "2.5.0"
1010
RayImage = "rayproject/ray:2.5.0"
1111
)

0 commit comments

Comments
 (0)