Skip to content

Commit

Permalink
fix ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
zwwhdls committed Jul 5, 2023
1 parent 44a5ae4 commit b932165
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/scripts/test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,9 @@ def test_deployment_static_patch_pv():

def test_dynamic_mount_image():
LOG.info("[test case] Deployment set mount image in storageClass begin..")
mount_image = "juicedata/mount:v1.0.0-4.8.0"
mount_image = "juicedata/mount:ee-nightly"
if IS_CE:
mount_image = "juicedata/mount:ce-nightly"
# deploy sc
sc_name = "mount-image-dynamic"
sc = StorageClass(name=sc_name, secret_name=SECRET_NAME,
Expand Down Expand Up @@ -1253,7 +1255,9 @@ def test_dynamic_mount_image():

def test_static_mount_image():
LOG.info("[test case] Deployment set mount image in PV begin..")
mount_image = "juicedata/mount:v1.0.0-4.8.0"
mount_image = "juicedata/mount:ee-nightly"
if IS_CE:
mount_image = "juicedata/mount:ce-nightly"
# deploy pv
pv_name = "mount-image-pv"
pv = PV(name=pv_name, access_mode="ReadWriteMany", volume_handle=pv_name,
Expand Down

0 comments on commit b932165

Please sign in to comment.