@@ -38,12 +38,8 @@ var _ = Describe("FSS Static in-transit encryption test", func() {
38
38
f := framework .NewDefaultFramework ("fss-basic" )
39
39
Context ("[cloudprovider][storage][csi][fss][static]" , func () {
40
40
It ("Create PVC and POD for FSS in-transit encryption" , func () {
41
- if setupF .Architecture == "AMD" {
42
- checkNodeAvailability (f )
43
- TestEncryptionType (f , []string {})
44
- } else {
45
- framework .Logf ("CSI-FSS Intransit Encryption is not supported on ARM architecture" )
46
- }
41
+ checkNodeAvailability (f )
42
+ TestEncryptionType (f , []string {})
47
43
})
48
44
})
49
45
})
@@ -91,16 +87,12 @@ var _ = Describe("Multiple Pods Static FSS test", func() {
91
87
})
92
88
93
89
It ("Multiple Pods should be able to read write same file with InTransit encryption enabled" , func () {
94
- if setupF .Architecture == "AMD" {
95
- checkNodeAvailability (f )
96
- pvcJig := framework .NewPVCTestJig (f .ClientSet , "csi-fss-e2e-test" )
97
- pv := pvcJig .CreatePVorFailFSS (f .Namespace .Name , setupF .VolumeHandle , "true" , []string {})
98
- pvc := pvcJig .CreateAndAwaitPVCOrFailStaticFSS (f .Namespace .Name , pv .Name , "50Gi" , nil )
99
- f .VolumeIds = append (f .VolumeIds , pvc .Spec .VolumeName )
100
- pvcJig .CheckMultiplePodReadWrite (f .Namespace .Name , pvc .Name , true )
101
- } else {
102
- framework .Logf ("CSI-FSS Intransit Encryption is not supported on ARM architecture" )
103
- }
90
+ checkNodeAvailability (f )
91
+ pvcJig := framework .NewPVCTestJig (f .ClientSet , "csi-fss-e2e-test" )
92
+ pv := pvcJig .CreatePVorFailFSS (f .Namespace .Name , setupF .VolumeHandle , "true" , []string {})
93
+ pvc := pvcJig .CreateAndAwaitPVCOrFailStaticFSS (f .Namespace .Name , pv .Name , "50Gi" , nil )
94
+ f .VolumeIds = append (f .VolumeIds , pvc .Spec .VolumeName )
95
+ pvcJig .CheckMultiplePodReadWrite (f .Namespace .Name , pvc .Name , true )
104
96
})
105
97
})
106
98
})
0 commit comments