BaseVolumeSource¶
- pydantic model controller.config.BaseVolumeSource¶
Source of a volume to be mounted in the lab.
This is a base class that must be subclassed by the different supported ways a volume can be provided.
- Parameters:
data (
Any
)
Show JSON schema
{ "title": "BaseVolumeSource", "description": "Source of a volume to be mounted in the lab.\n\nThis is a base class that must be subclassed by the different supported\nways a volume can be provided.", "type": "object", "properties": { "type": { "examples": [ "nfs" ], "title": "Type of volume to mount", "type": "string" } }, "additionalProperties": false, "required": [ "type" ] }
- Fields:
- field type: str [Required]¶