Local cluster
Any local Kubernetes works. The two most common choices are kind and minikube. The controller auto-detects whether it runs in-cluster or against a local kubeconfig, so the same image works in both.
kind create cluster --name ai-agentskubectl config use-context kind-ai-agentsBecause the agent runtime is injected at run time, your Station images only need to be glibc-based
(for example debian:bookworm-slim). Load locally built images into the cluster with:
kind load docker-image ai-agent:dev --name ai-agentsminikube
Section titled “minikube”minikube start -p ai-agentskubectl config use-context ai-agentsTo use locally built images without a registry, build against minikube’s Docker daemon:
eval "$(minikube -p ai-agents docker-env)"# docker build ... ai-agent:devWith a cluster running, continue to Install.