github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_empty_dir_volume_source.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 // emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir 13 type EmptyDirVolumeSource struct { 14 // medium represents what type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir 15 Medium string `json:"medium,omitempty"` 16 SizeLimit *BoxedString `json:"sizeLimit,omitempty"` 17 }