Quick Start¶
Get up and running with KubeCopilot in four steps.
Prerequisites¶
- kubectl v1.20+
- Helm v3.10+
- A Kubernetes or OpenShift cluster
- A GitHub PAT with
copilotscope
1. Install the Operator¶
helm upgrade --install kube-copilot-agent ./helm/kube-copilot-agent \
--namespace kube-copilot-agent \
--create-namespace
2. Deploy an Agent¶
helm upgrade --install my-agent ./helm/github-copilot-agent \
--namespace kube-copilot-agent \
--set githubToken.value=<your-github-pat>
3. Deploy the Web UI¶
4. Access the UI¶
kubectl port-forward svc/kube-copilot-ui 8080:80 \
-n kube-copilot-agent
# Open: http://localhost:8080
Next Steps¶
- Installation Guide — detailed Helm values, OpenShift Console Plugin, and more
- Configuration — custom skills, AGENT.md, BYOK providers
- Usage — kubectl-based CRD interactions
- Architecture — CRD design and request flow