Skip to content

Commit

Permalink
Merge pull request #1361 from kubernetes-sigs/fix-e2e-test
Browse files Browse the repository at this point in the history
test: run one e2e test using smb protocol
  • Loading branch information
andyzhangx authored Aug 12, 2023
2 parents 8b4b557 + 585596c commit a0cf471
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/e2e/dynamic_provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
Cmd: convertToPowershellCommandIfNecessary("while true; do echo $(date -u) >> /mnt/test-1/data; sleep 100; done"),
Volumes: []testsuites.VolumeDetails{
{
FSType: "ext3",
ClaimSize: "10Gi",
VolumeMount: testsuites.VolumeMountDetails{
NameGenerate: "test-volume-",
Expand All @@ -244,7 +243,6 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
Cmd: convertToPowershellCommandIfNecessary("while true; do echo $(date -u) >> /mnt/test-1/data; sleep 100; done"),
Volumes: []testsuites.VolumeDetails{
{
FSType: "ext4",
ClaimSize: "10Gi",
VolumeMount: testsuites.VolumeMountDetails{
NameGenerate: "test-volume-",
Expand Down Expand Up @@ -525,7 +523,6 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
Cmd: "while true; do echo $(date -u) >> /mnt/test-1/data; sleep 100; done",
Volumes: []testsuites.VolumeDetails{
{
FSType: "ext3",
ClaimSize: "10Gi",
VolumeMount: testsuites.VolumeMountDetails{
NameGenerate: "test-volume-",
Expand All @@ -538,7 +535,6 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
Cmd: convertToPowershellCommandIfNecessary("while true; do echo $(date -u) >> /mnt/test-1/data; sleep 100; done"),
Volumes: []testsuites.VolumeDetails{
{
FSType: "ext4",
ClaimSize: "10Gi",
VolumeMount: testsuites.VolumeMountDetails{
NameGenerate: "test-volume-",
Expand All @@ -554,7 +550,7 @@ var _ = ginkgo.Describe("Dynamic Provisioning", func() {
CSIDriver: testDriver,
Pods: pods,
ColocatePods: true,
StorageClassParameters: map[string]string{"skuName": "Premium_LRS", "fsType": "xfs"},
StorageClassParameters: map[string]string{"skuName": "Premium_LRS"},
}
test.Run(ctx, cs, ns)
})
Expand Down

0 comments on commit a0cf471

Please sign in to comment.