case class EmptyDirVolumeSource(medium: Optional[String] = Optional.Absent, sizeLimit: Optional[Quantity] = Optional.Absent) extends Product with Serializable
Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.
- medium
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
- Alphabetic
- By Inheritance
- EmptyDirVolumeSource
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
EmptyDirVolumeSource(medium: Optional[String] = Optional.Absent, sizeLimit: Optional[Quantity] = Optional.Absent)
- medium
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
Value Members
-
def
getMedium: IO[K8sFailure, String]
What type of storage medium should back this directory.
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
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSizeLimit: IO[K8sFailure, Quantity]
Gets sizeLimit.
Gets sizeLimit.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val medium: Optional[String]
- val sizeLimit: Optional[Quantity]