Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ workflow:
as: openshift-e2e-azure-csi-ultrassd
steps:
pre:
- chain: ipi-conf-azure
- ref: ipi-conf
- ref: ipi-conf-telemetry
- ref: ipi-conf-azure
- ref: ipi-conf-azure-custom-region
- ref: ipi-conf-azure-custom-az
- ref: ipi-conf-azure-ultrassd
- chain: azure-provision-service-principal-minimal-permission
- ref: rhcos-conf-osstream
Expand All @@ -21,6 +25,13 @@ workflow:
env:
AZURE_DISK_SKU: UltraSSD_LRS
CLUSTERCSIDRIVER: disk.csi.azure.com
# UltraSSD capability is only available in some regions, westus2 is the recommended region for testing
# Although it should be available on all zones but we meet some issues on zone 1 and 2 in westus2,
# so we only use zone 3 for both control plane and compute nodes to make the test more stable.
# ref: https://learn.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd?tabs=azure-portal
COMPUTE_CUSTOM_AZURE_AZ: "['3']"
CP_CUSTOM_AZURE_AZ: "['3']"
CUSTOM_AZURE_REGION: westus2
TRUECONDITIONS: AzureDiskDriverControllerServiceControllerAvailable AzureDiskDriverNodeServiceControllerAvailable
TEST_CSI_DRIVER_MANIFEST: manifest-azure-disk.yaml
TEST_OCP_CSI_DRIVER_MANIFEST: ocp-manifest-azure-disk.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ metadata:
provisioner: disk.csi.azure.com
parameters:
skuName: UltraSSD_LRS
# UltraSSD_LRS only support None caching mode
cachingMode: None
volumeBindingMode: WaitForFirstConsumer
allowVolumeExpansion: true
reclaimPolicy: Delete
Expand Down