pod_create
Create Kubernetes pods in specified namespaces with customizable container images, commands, labels, and environment variables using k8s-pilot's centralized control plane.
Instructions
Create a new pod in the specified namespace.
Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The name for the new pod image: The container image to use labels: Optional dictionary of pod labels command: Optional command to run in the container args: Optional arguments for the command env_vars: Optional environment variables for the container
Returns: Information about the created pod
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | ||
| command | No | ||
| context_name | Yes | ||
| env_vars | No | ||
| image | Yes | ||
| labels | No | ||
| name | Yes | ||
| namespace | Yes |