Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Host Path Volume Source Structure

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

Type: object Properties: 2 Required: 1
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

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

Properties

path type

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-host-path-volume-source-structure.json",
  "name": "io.k8s.api.core.v1.HostPathVolumeSource",
  "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
  "type": "object",
  "properties": {
    "path": {
      "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
      "type": "string"
    },
    "type": {
      "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
      "type": "string"
    }
  },
  "required": [
    "path"
  ]
}