ContainerVolume

Volume mount specification

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
source string The external volume reference
path string An optional sub path in the volume
readOnly boolean Indicates if the volume should be mounted in a read-only mode
View JSON Schema on GitHub

JSON Schema

application-research-containervolume-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerVolume",
  "title": "ContainerVolume",
  "type": "object",
  "description": "Volume mount specification",
  "additionalProperties": false,
  "required": [
    "source"
  ],
  "properties": {
    "source": {
      "type": "string",
      "description": "The external volume reference"
    },
    "path": {
      "type": "string",
      "description": "An optional sub path in the volume"
    },
    "readOnly": {
      "type": "boolean",
      "description": "Indicates if the volume should be mounted in a read-only mode"
    }
  }
}