Links

volumes

Reference for humanitec/volumes Workload Profile Feature
The volumes feature defines volumes that are not provisioned via the Humanitec resources system for example emptyDir.

Description

The top level of the volumes feature is a map of volumes. The Keys must be valid Humanitec IDs.
The volume object has the following properties:
Property
Type
Description
source
Object
This must follow the Kubernetes Volume Type source schema depending on the type specified in type.
type
String

Example

This example shows an emptyDir with a 1GB size limit.
{
"common-dir": {
"source": {
"sizeLimit": "1024Mi"
},
"type": "emptyDir"
}
}
Last modified 1yr ago