Skip to content

Commit

Permalink
workaround the issue: kubernetes/kubernetes#107065
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvz committed Mar 30, 2023
1 parent 30369fb commit 49fdec3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/e2e/pre_provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ var _ = ginkgo.Describe("[blob-csi-e2e] Pre-Provisioned", func() {
Cmd: "echo 'hello world' > /mnt/test-1/data && grep 'hello world' /mnt/test-1/data",
Volumes: []testsuites.VolumeDetails{
{
VolumeID: volumeID,
// make VolumeID unique in test
// to workaround the issue: https://github.com/kubernetes/kubernetes/pull/107065
// which was fixed in k8s 1.24
VolumeID: fmt.Sprintf("%s%d", volumeID, i),
ClaimSize: volumeSize,
VolumeMount: testsuites.VolumeMountDetails{
NameGenerate: "test-volume-",
Expand Down

0 comments on commit 49fdec3

Please sign in to comment.