create_deployment
Deploy Kubernetes applications by specifying name, image, namespace, and replica count. Simplifies cluster management within the MCP Kubernetes Server environment.
Instructions
Create a Kubernetes deployment with specified name, image, namespace and replicas
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes | ||
name | Yes | ||
namespace | No | default | |
replicas | No |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"title": "Image",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"namespace": {
"default": "default",
"title": "Namespace",
"type": "string"
},
"replicas": {
"default": 1,
"title": "Replicas",
"type": "integer"
}
},
"required": [
"name",
"image"
],
"title": "create_deploymentArguments",
"type": "object"
}