Skip to content
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
15 changes: 12 additions & 3 deletions tests/global_config_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@
Images.Windows.DEFAULT_DV_SIZE = "75Gi"

storage_class_matrix = [
Comment thread
jpeimer marked this conversation as resolved.
{
Comment thread
jpeimer marked this conversation as resolved.
StorageClassNames.CEPH_RBD_VIRTUALIZATION: {
"volume_mode": DataVolume.VolumeMode.BLOCK,
"access_mode": DataVolume.AccessMode.RWX,
"snapshot": True,
"online_resize": True,
"wffc": False,
"default": True,
}
},
{
StorageClassNames.PORTWORX_CSI_DB_SHARED: {
"volume_mode": DataVolume.VolumeMode.FILE,
Expand All @@ -27,7 +37,6 @@
"snapshot": True,
"online_resize": True,
"wffc": False,
"default": True,
}
},
{
Expand All @@ -41,8 +50,8 @@
},
]

storage_class_a = StorageClassNames.IO2_CSI
storage_class_b = StorageClassNames.IO2_CSI
storage_class_a = StorageClassNames.CEPH_RBD_VIRTUALIZATION
storage_class_b = StorageClassNames.CEPH_RBD_VIRTUALIZATION

for _dir in dir():
if not config: # noqa: F821
Expand Down
Loading