Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 Modify Volume Status Structure

ModifyVolumeStatus represents the status object of ControllerModifyVolume operation

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

io.k8s.api.core.v1.ModifyVolumeStatus 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

status targetVolumeAttributesClassName

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-modify-volume-status-structure.json",
  "name": "io.k8s.api.core.v1.ModifyVolumeStatus",
  "description": "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation",
  "type": "object",
  "properties": {
    "status": {
      "description": "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.",
      "type": "string"
    },
    "targetVolumeAttributesClassName": {
      "description": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
      "type": "string"
    }
  },
  "required": [
    "status"
  ]
}