Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

system-test: deploy workload with RBD volumes #64

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions tests/system-tests/rdscore/tests/00_validate_top_level.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ var _ = Describe(
By("Creating a workload with CephFS PVC")
rdscorecommon.DeployWorkflowCephFSPVC(ctx)

By("Creating a workload with CephRBD PVC")
rdscorecommon.DeployWorkloadCephRBDPVC(ctx)

By("Creating SR-IOV workloads on the same node")
rdscorecommon.VerifySRIOVWorkloadsOnSameNode(ctx)

Expand Down Expand Up @@ -188,6 +191,10 @@ var _ = Describe(
Label("persistent-storage", "verify-cephfs"), reportxml.ID("71873"),
rdscorecommon.VerifyDataOnCephFSPVC)

It("Verifies CephRBD PVC is still accessible",
Label("persistent-storage", "verify-cephrbd"), reportxml.ID("71990"),
rdscorecommon.VerifyDataOnCephRBDPVC)

It("Verifies CephFS workload is deployable after hard reboot",
Label("persistent-storage", "deploy-cephfs-pvc"), reportxml.ID("71851"), MustPassRepeatedly(3),
rdscorecommon.VerifyCephFSPVC)
Expand Down Expand Up @@ -218,6 +225,9 @@ var _ = Describe(
By("Creating a workload with CephFS PVC")
rdscorecommon.DeployWorkflowCephFSPVC(ctx)

By("Creating a workload with CephRBD PVC")
rdscorecommon.DeployWorkloadCephRBDPVC(ctx)

By("Creating SR-IOV worklods that run on same node")
rdscorecommon.VerifySRIOVWorkloadsOnSameNode(ctx)

Expand Down Expand Up @@ -275,6 +285,10 @@ var _ = Describe(
Label("persistent-storage", "verify-cephfs"), reportxml.ID("72042"),
rdscorecommon.VerifyDataOnCephFSPVC)

It("Verifies CephRBD PVC is still accessible",
Label("persistent-storage", "verify-cephrbd"), reportxml.ID("72044"),
rdscorecommon.VerifyDataOnCephRBDPVC)

It("Verifies CephFS workload is deployable after graceful reboot",
Label("persistent-storage", "deploy-cephfs-pvc"), reportxml.ID("72045"), MustPassRepeatedly(3),
rdscorecommon.VerifyCephFSPVC)
Expand Down
Loading