Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Glusterfs Volume Source Structure

Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

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

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

Properties

endpoints path readOnly

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-glusterfs-volume-source-structure.json",
  "name": "io.k8s.api.core.v1.GlusterfsVolumeSource",
  "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
  "type": "object",
  "properties": {
    "endpoints": {
      "description": "endpoints is the endpoint name that details Glusterfs topology.",
      "type": "string"
    },
    "path": {
      "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
      "type": "string"
    },
    "readOnly": {
      "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
      "type": "boolean"
    }
  },
  "required": [
    "endpoints",
    "path"
  ]
}