Install in minutes, on any Kubernetes.
The agent is one Helm install, identical on every provider — the only provider-specific step is getting a working kubeconfig.
1. Connect kubectl
AWS EKS
aws eks update-kubeconfig --region <region> --name <cluster>
Azure AKS
az aks get-credentials -g <resource-group> -n <cluster>
Google GKE
gcloud container clusters get-credentials <cluster> --region <region>
OpenShift
oc login <api-url> # the agent runs under the restricted SCC
On-prem / k3s / kind
# if `kubectl get nodes` works, you are ready
2. Install the agent (identical everywhere)
Create an account and add a cluster — the dashboard mints your API key and shows this command pre-filled:
helm repo add iverson <your dashboard origin>/charts helm repo update helm install iverson-agent iverson/iverson-agent \ --namespace iverson --create-namespace \ --set apiKey=<your key> \ --set endpoint=<your dashboard origin>
3. Watch it connect
First snapshot lands in about a minute; the dashboard flips to connected and your first findings follow. The agent is read-only — get, list, watch — and env var values never leave your cluster. Details on the security page.