Argo Workflows · Schema

io.k8s.api.core.v1.EmptyDirVolumeSource

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
medium string 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:
sizeLimit object sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-empty-dir-volume-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-k8s-api-core-v1-empty-dir-volume-source-schema.json",
  "title": "io.k8s.api.core.v1.EmptyDirVolumeSource",
  "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
  "type": "object",
  "properties": {
    "medium": {
      "description": "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",
      "type": "string"
    },
    "sizeLimit": {
      "description": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
      "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
    }
  }
}