Skip to content

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 copilot scope

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

helm upgrade --install kube-copilot-ui ./helm/kube-copilot-ui \
  --namespace kube-copilot-agent

4. Access the UI

kubectl port-forward svc/kube-copilot-ui 8080:80 \
  -n kube-copilot-agent
# Open: http://localhost:8080

Next Steps