cldkctl_k8s_pod_create
Create Kubernetes pods by specifying project ID, namespace, and pod specifications using the cldkctl endpoint on the MCP cldkctl Server.
Instructions
Call the cldkctl_k8s_pod_create endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
spec | Yes | Pod spec (YAML/JSON) |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"spec": {
"description": "Pod spec (YAML/JSON)",
"type": "object"
}
},
"required": [
"project_id",
"namespace",
"spec"
],
"type": "object"
}