@@ -67,8 +67,9 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
67
67
},
68
68
}
69
69
test := testsuites.DynamicallyProvisionedCmdVolumeTest {
70
- CSIDriver : testDriver ,
71
- Pods : pods ,
70
+ CSIDriver : testDriver ,
71
+ Pods : pods ,
72
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_LRS" },
72
73
}
73
74
test .Run (cs , ns )
74
75
})
@@ -94,6 +95,7 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
94
95
Cmd : []string {"cat" , "/mnt/test-1/data" },
95
96
ExpectedString : "hello world\n hello world\n " , // pod will be restarted so expect to see 2 instances of string
96
97
},
98
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_LRS" },
97
99
}
98
100
test .Run (cs , ns )
99
101
})
@@ -117,8 +119,9 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
117
119
},
118
120
}
119
121
test := testsuites.DynamicallyProvisionedReadOnlyVolumeTest {
120
- CSIDriver : testDriver ,
121
- Pods : pods ,
122
+ CSIDriver : testDriver ,
123
+ Pods : pods ,
124
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_GRS" },
122
125
}
123
126
test .Run (cs , ns )
124
127
})
@@ -153,9 +156,10 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
153
156
},
154
157
}
155
158
test := testsuites.DynamicallyProvisionedCollocatedPodTest {
156
- CSIDriver : testDriver ,
157
- Pods : pods ,
158
- ColocatePods : true ,
159
+ CSIDriver : testDriver ,
160
+ Pods : pods ,
161
+ ColocatePods : true ,
162
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_RAGRS" },
159
163
}
160
164
test .Run (cs , ns )
161
165
})
@@ -170,8 +174,9 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
170
174
},
171
175
}
172
176
test := testsuites.DynamicallyProvisionedReclaimPolicyTest {
173
- CSIDriver : testDriver ,
174
- Volumes : volumes ,
177
+ CSIDriver : testDriver ,
178
+ Volumes : volumes ,
179
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_LRS" },
175
180
}
176
181
test .Run (cs , ns )
177
182
})
@@ -186,9 +191,10 @@ var _ = ginkgo.Describe("[blobfuse-csi-e2e] Dynamic Provisioning", func() {
186
191
},
187
192
}
188
193
test := testsuites.DynamicallyProvisionedReclaimPolicyTest {
189
- CSIDriver : testDriver ,
190
- Volumes : volumes ,
191
- Blobfuse : blobfuseDriver ,
194
+ CSIDriver : testDriver ,
195
+ Volumes : volumes ,
196
+ Blobfuse : blobfuseDriver ,
197
+ StorageClassParameters : map [string ]string {"skuName" : "Standard_GRS" },
192
198
}
193
199
test .Run (cs , ns )
194
200
})
0 commit comments