Create a new persistent volume in the tenant’s sandbox namespace.
This creates both a PersistentVolume (PV) and PersistentVolumeClaim (PVC). The volume can then be referenced in sandbox templates.
Volume creation is subject to quota limits (count and total storage) configured via Metronome org config.
If wait_for_ready is True (default), this blocks until the PVC is bound or the timeout is reached.
Request model for creating a PersistentVolume and PersistentVolumeClaim.
Name of the volume (max 63 chars, DNS-1035 format: lowercase alphanumeric and hyphens, must start with letter)
Storage size (e.g., '1Gi', '10Gi')
"1Gi"
"5Gi"
"10Gi"
Storage class name. Only 'standard' is allowed. Uses cluster default if not specified.
"standard"Wait for volume to be bound before returning. If True, the request blocks until the PVC is bound or times out.
Timeout in seconds when wait_for_ready is True.
5 <= x <= 300