cldkctl_vm_create
Create virtual machines with specified project ID, name, flavor, image, network, and storage using the MCP cldkctl Server endpoint for streamlined VM provisioning.
Instructions
Call the cldkctl_vm_create endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flavor | Yes | Flavor ID | |
gpu | No | GPU type (optional) | |
image | Yes | Image ID | |
name | Yes | VM name | |
network | Yes | Network ID | |
project_id | Yes | Project ID | |
storage | Yes | Storage size |
Input Schema (JSON Schema)
{
"properties": {
"flavor": {
"description": "Flavor ID",
"type": "string"
},
"gpu": {
"description": "GPU type (optional)",
"type": "string"
},
"image": {
"description": "Image ID",
"type": "string"
},
"name": {
"description": "VM name",
"type": "string"
},
"network": {
"description": "Network ID",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"storage": {
"description": "Storage size",
"type": "string"
}
},
"required": [
"project_id",
"name",
"flavor",
"image",
"network",
"storage"
],
"type": "object"
}