@@ -92,40 +92,6 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
92
92
test .Run (ctx , cs , ns )
93
93
})
94
94
95
- ginkgo .It ("should create a volume on demand with storage account having shared access key disabled" , func (ctx ginkgo.SpecContext ) {
96
- pods := []testsuites.PodDetails {
97
- {
98
- Cmd : "echo 'hello world' > /mnt/test-1/data && grep 'hello world' /mnt/test-1/data" ,
99
- Volumes : []testsuites.VolumeDetails {
100
- {
101
- ClaimSize : "10Gi" ,
102
- MountOptions : []string {
103
- "-o allow_other" ,
104
- "--file-cache-timeout-in-seconds=120" ,
105
- "--cancel-list-on-mount-seconds=0" ,
106
- },
107
- VolumeMount : testsuites.VolumeMountDetails {
108
- NameGenerate : "test-volume-" ,
109
- MountPathGenerate : "/mnt/test-" ,
110
- },
111
- },
112
- },
113
- },
114
- }
115
- test := testsuites.DynamicallyProvisionedCmdVolumeTest {
116
- CSIDriver : testDriver ,
117
- Pods : pods ,
118
- StorageClassParameters : map [string ]string {
119
- "skuName" : "Standard_GRS" ,
120
- "storeAccountKey" : "false" ,
121
- "allowSharedKeyAccess" : "false" ,
122
- "AzureStorageAuthType" : "msi" ,
123
- "AzureStorageIdentityClientID" : "dummy" ,
124
- },
125
- }
126
- test .Run (ctx , cs , ns )
127
- })
128
-
129
95
ginkgo .It ("should create a volume on demand with mount options" , func (ctx ginkgo.SpecContext ) {
130
96
pods := []testsuites.PodDetails {
131
97
{
@@ -619,9 +585,10 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Dynamic Provisioning", func() {
619
585
CSIDriver : testDriver ,
620
586
Pods : pods ,
621
587
StorageClassParameters : map [string ]string {
622
- "skuName" : "Premium_LRS" ,
623
- "protocol" : "nfs" ,
624
- "mountPermissions" : "0" ,
588
+ "skuName" : "Premium_LRS" ,
589
+ "protocol" : "nfs" ,
590
+ "mountPermissions" : "0" ,
591
+ "allowSharedKeyAccess" : "false" ,
625
592
},
626
593
}
627
594
test .Run (ctx , cs , ns )
0 commit comments