create-network-storage
Define and allocate network storage for a specific cluster using cluster ID, storage name, and size in GB. Ensures resources are efficiently organized and accessible for Novita MCP Server operations.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| clusterId | Yes | The ID of the cluster to create network storage. Must be from the `list-clusters` tool result, and the cluster must have supportNetworkStorage set to true | |
| storageName | Yes | Name for the network storage. Use only letters, numbers, and hyphens | |
| storageSize | Yes | Size of the network storage in GB | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "clusterId": {
      "description": "The ID of the cluster to create network storage. Must be from the `list-clusters` tool result, and the cluster must have supportNetworkStorage set to true",
      "type": "string"
    },
    "storageName": {
      "description": "Name for the network storage. Use only letters, numbers, and hyphens",
      "minLength": 1,
      "type": "string"
    },
    "storageSize": {
      "description": "Size of the network storage in GB",
      "minimum": 10,
      "type": "number"
    }
  },
  "required": [
    "clusterId",
    "storageName",
    "storageSize"
  ],
  "type": "object"
}