Packages

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

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EmptyDirVolumeSource
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. 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

  1. 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.

  2. def getSizeLimit: IO[K8sFailure, Quantity]

    Gets sizeLimit.

    Gets sizeLimit.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. val medium: Optional[String]
  4. val sizeLimit: Optional[Quantity]