For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
kagent deploy
kagent deploy command
Deploy an agent to Kubernetes.
kagent deploy [project-directory] [flags]Arguments:
project-directory- The directory containing the agent project withkagent.yaml
Flags:
--api-key- API key for the model provider (convenience option to create secret)--api-key-secret- Name of existing secret containing API key (recommended)--dry-run- Output YAML manifests without applying them to the cluster--image, -i- Image to use (defaults tolocalhost:5001/{agentName}:latest)--namespace- Kubernetes namespace to deploy to--platform- Target platform for Docker build (e.g., linux/amd64, linux/arm64)
Global Flags:
--kagent-url- kagent URL (default: “http://localhost:8083”)--output-format, -o- Output format (default: “table”)--timeout- Timeout duration (default: 300s)--verbose, -v- Verbose output
About kagent deploy
The kagent deploy command deploys an agent to Kubernetes by performing the following steps:
- Loads the agent configuration from
kagent.yaml - Either creates a new secret with the provided API key or verifies an existing secret
- Creates an
AgentCustom Resource Definition (CRD) with the appropriate configuration
API Key Options:
--api-key: Convenience option to create a new secret with the provided API key--api-key-secret: Recommended way to reference an existing secret by name
Dry-Run Mode:
Use the --dry-run flag to output YAML manifests without applying them to the cluster. This is useful for previewing changes or for use with GitOps workflows.
Example
Deploy using an existing secret:
kagent deploy ./my-agent --api-key-secret "my-existing-secret"Deploy and create a new secret:
kagent deploy ./my-agent --api-key "your-api-key-here" --image "myregistry/myagent:v1.0"Deploy to a specific namespace:
kagent deploy ./my-agent --api-key-secret "my-secret" --namespace "my-namespace"Generate manifests without deploying:
kagent deploy ./my-agent --api-key "your-api-key" --dry-run > manifests.yamlDeploy with a specific platform for the Docker build:
kagent deploy ./my-agent --env-file .env --platform linux/amd64