Commit 2bd0cd2f authored by jeff vance's avatar jeff vance

fixes issue 56041

parent 5337ff80
...@@ -215,7 +215,6 @@ var _ = SIGDescribe("Pod Disks", func() { ...@@ -215,7 +215,6 @@ var _ = SIGDescribe("Pod Disks", func() {
}) })
Context("schedule a pod w/ RW PD(s) mounted to 1 or more containers, write to PD, verify content, delete pod, and repeat in rapid succession [Slow]", func() { Context("schedule a pod w/ RW PD(s) mounted to 1 or more containers, write to PD, verify content, delete pod, and repeat in rapid succession [Slow]", func() {
var diskNames []string
type testT struct { type testT struct {
numContainers int numContainers int
numPDs int numPDs int
...@@ -243,6 +242,7 @@ var _ = SIGDescribe("Pod Disks", func() { ...@@ -243,6 +242,7 @@ var _ = SIGDescribe("Pod Disks", func() {
var host0Pod *v1.Pod var host0Pod *v1.Pod
var err error var err error
fileAndContentToVerify := make(map[string]string) fileAndContentToVerify := make(map[string]string)
diskNames := make([]string, 0, numPDs)
By(fmt.Sprintf("creating %d PD(s)", numPDs)) By(fmt.Sprintf("creating %d PD(s)", numPDs))
for i := 0; i < numPDs; i++ { for i := 0; i < numPDs; i++ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment