Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Empty Dir Volume Source Structure

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

Type: object Properties: 2
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

io.k8s.api.core.v1.EmptyDirVolumeSource is a JSON Structure definition published by Argo Workflows, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

medium sizeLimit

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-structure/argo-workflows-io-k8s-api-core-v1-empty-dir-volume-source-structure.json",
  "name": "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"
    }
  }
}