kubeswarm/helm-charts
Helm charts for kubeswarm
Platform-specific configuration:
{
"mcpServers": {
"helm-charts": {
"command": "npx",
"args": [
"-y",
"helm-charts"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
<p align="center"> </p>
<h2 align="center">helm-charts</h2>
[](https://github.com/kubeswarm/helm-charts/actions/workflows/lint.yml) [](./LICENSE)
Helm charts for kubeswarm - AI agents as Kubernetes-native resources.
Full documentation at [docs.kubeswarm.io](https://docs.kubeswarm.io).
helm repo add kubeswarm https://kubeswarm.github.io/helm-charts
helm repo update| Chart | Description | |---|---| | kubeswarm | Kubernetes operator for running AI agents in production |
# 1. Install the operator (no API key required)
helm install kubeswarm kubeswarm/kubeswarm \
--namespace kubeswarm-system --create-namespace
# 2. Add your LLM API key via a Kubernetes Secret
kubectl create secret generic my-kubeswarm-secrets \
--namespace kubeswarm-system \
--from-literal=ANTHROPIC_API_KEY=sk-ant-...
# or for OpenAI / compatible endpoint (Ollama, vLLM, etc.):
kubectl create secret generic my-kubeswarm-secrets \
--namespace kubeswarm-system \
--from-literal=OPENAI_API_KEY=sk-... \
--from-literal=OPENAI_BASE_URL=http://ollama.ollama.svc:11434/v1
# 3. Point the chart at the secret
helm upgrade kubeswarm kubeswarm/kubeswarm \
--namespace kubeswarm-system \
--set apiKeys.existingSecret=my-kubeswarm-secrets| Value | Default | Description | |---|---|---| | replicaCount | 1 | Number of operator replicas (>1 requires leaderElection.enabled=true) | | image.repository | ghcr.io/kubeswarm/kubeswarm-operator | Operator image | | image.tag | _(chart appVersion)_ | Operator image tag | |
Loading reviews...