Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ManagedVolumeOptions

Type: object

ManagedVolumeOptions selects existing volumes; it does not create storage.
attachments · required

Type: array

attachments cannot repeat a volume identity or overlap another mount target.
Array item

Schema: VolumeAttachment

All schema constraints and annotations
{
  "description": "attachments cannot repeat a volume identity or overlap another mount target.",
  "items": {
    "$ref": "#/components/schemas/VolumeAttachment"
  },
  "minItems": 1,
  "type": "array"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "ManagedVolumeOptions selects existing volumes; it does not create storage.",
  "properties": {
    "attachments": {
      "description": "attachments cannot repeat a volume identity or overlap another mount target.",
      "items": {
        "$ref": "#/components/schemas/VolumeAttachment"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "attachments"
  ],
  "title": "ManagedVolumeOptions",
  "type": "object"
}