Skip to content

Commit

Permalink
Updated local storage option operator image details
Browse files Browse the repository at this point in the history
Signed-off-by: Amrita Mahapatra <[email protected]>
  • Loading branch information
amr1ta committed Jun 4, 2024
1 parent 4cb8748 commit 1915c3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions ocs_ci/ocs/resources/storage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def create_native_storage_client(
onboarding_token=onboarding_token,
)

if self.ocs_version < 4.16:
if self.ocs_version < version.VERSION_4_16:
self.create_storageclaim(
storageclaim_name="ocs-storagecluster-ceph-rbd",
type="blockpool",
Expand All @@ -451,7 +451,7 @@ def verify_native_storageclient(self):
storageclaims, associated storageclasses and storagerequests are created successfully.
"""
if self.ocs_version >= 4.16:
if self.ocs_version >= version.VERSION_4_16:
namespace = config.ENV_DATA["cluster_namespace"]
else:
namespace = constants.OPENSHIFT_STORAGE_CLIENT_NAMESPACE
Expand All @@ -460,12 +460,15 @@ def verify_native_storageclient(self):
kind=constants.STORAGECLIENT,
namespace=namespace,
)
storageclient = storageclient_obj.get()["items"][0]
storageclient_name = storageclient["metadata"]["name"]

# Verify storageclient is in Connected status
assert self.verify_storageclient_status(namespace=namespace)
assert self.verify_storageclient_status(
storageclient_name=storageclient_name, namespace=namespace
)

# Validate storageclaims are Ready and associated storageclasses are created
storageclient = storageclient_obj.get()["items"][0]
storageclient_name = storageclient["metadata"]["name"]
verify_storageclient_storageclass_claims(storageclient_name)

# Validate storagerequests are created successfully
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ spec:
icon:
base64data: ""
mediatype: ""
image: quay.io/openshift-qe-optional-operators/ocp4-index:latest
image: quay.io/openshift-qe-optional-operators/aosqe-index:latest
publisher: Red Hat
sourceType: grpc

0 comments on commit 1915c3d

Please sign in to comment.