func createSummaryTestPods(f *framework.Framework, podNamePrefix string, count int, volumeNamePrefix string) (sets.String, sets.String) { podNames := sets.NewString() volumes := sets.NewString(volumeNamePrefix) for i := 0; i < count; i++ { podNames.Insert(fmt.Sprintf("%s%v", podNamePrefix, i)) } var pods []*api.Pod for _, podName := range podNames.List() { pods = append(pods, &api.Pod{ ObjectMeta: api.ObjectMeta{ Name: podName, }, Spec: api.PodSpec{ // Don't restart the Pod since it is expected to exit RestartPolicy: api.RestartPolicyNever, Containers: []api.Container{ { Image: ImageRegistry[busyBoxImage], Command: []string{"sh", "-c", "while true; do echo 'hello world' | tee /test-empty-dir-mnt/file ; sleep 1; done"}, Name: podName + containerSuffix, VolumeMounts: []api.VolumeMount{ {MountPath: "/test-empty-dir-mnt", Name: volumeNamePrefix}, }, }, }, SecurityContext: &api.PodSecurityContext{ SELinuxOptions: &api.SELinuxOptions{ Level: "s0", }, }, Volumes: []api.Volume{ // TODO: Test secret volumes // TODO: Test hostpath volumes {Name: volumeNamePrefix, VolumeSource: api.VolumeSource{EmptyDir: &api.EmptyDirVolumeSource{}}}, }, }, }) } f.CreatePods(pods) return podNames, volumes }